mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-21 09:39:41 +00:00
ignore attempts to set non-existing variables
This commit is contained in:
parent
b3412b7eec
commit
749136bf33
1 changed files with 8 additions and 0 deletions
|
@ -219,6 +219,14 @@ namespace Compiler
|
||||||
|
|
||||||
bool LineParser::parseKeyword (int keyword, const TokenLoc& loc, Scanner& scanner)
|
bool LineParser::parseKeyword (int keyword, const TokenLoc& loc, Scanner& scanner)
|
||||||
{
|
{
|
||||||
|
if (mState==SetPotentialMemberVarState && keyword==Scanner::K_to)
|
||||||
|
{
|
||||||
|
getErrorHandler().warning ("unknown variable (ignoring set instruction)", loc);
|
||||||
|
SkipParser skip (getErrorHandler(), getContext());
|
||||||
|
scanner.scan (skip);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (mState==SetState)
|
if (mState==SetState)
|
||||||
{
|
{
|
||||||
// allow keywords to be used as variable names when assigning a value to a variable.
|
// allow keywords to be used as variable names when assigning a value to a variable.
|
||||||
|
|
Loading…
Reference in a new issue