mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
improved the remaining handling of extra arguments
This commit is contained in:
parent
46e32de350
commit
ece40b1e96
2 changed files with 10 additions and 2 deletions
|
@ -639,7 +639,8 @@ namespace Compiler
|
|||
if (code==Scanner::S_newline)
|
||||
{
|
||||
// end marker
|
||||
mTokenLoc = loc;
|
||||
if (mTokenLoc.mLiteral.empty())
|
||||
mTokenLoc = loc;
|
||||
scanner.putbackSpecial (code, loc);
|
||||
return false;
|
||||
}
|
||||
|
@ -820,7 +821,7 @@ namespace Compiler
|
|||
if (parser.isEmpty())
|
||||
break;
|
||||
else
|
||||
getErrorHandler().warning("Ignoring extra argument", mTokenLoc);
|
||||
getErrorHandler().warning("Ignoring extra argument", parser.getTokenLoc());
|
||||
}
|
||||
else if (*iter=='z')
|
||||
{
|
||||
|
@ -878,4 +879,9 @@ namespace Compiler
|
|||
|
||||
return optionalCount;
|
||||
}
|
||||
|
||||
const TokenLoc& ExprParser::getTokenLoc() const
|
||||
{
|
||||
return mTokenLoc;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue