mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-26 22:45:15 -04:00
ExprParser: Warn about ignored arguments
This commit is contained in:
parent
3ebfb47983
commit
e695619aa5
@ -804,6 +804,8 @@ namespace Compiler
|
|||||||
if (optional)
|
if (optional)
|
||||||
++optionalCount;
|
++optionalCount;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
getErrorHandler().warning("Ignoring extra argument", mTokenLoc);
|
||||||
}
|
}
|
||||||
else if (*iter=='X')
|
else if (*iter=='X')
|
||||||
{
|
{
|
||||||
@ -815,6 +817,8 @@ namespace Compiler
|
|||||||
|
|
||||||
if (parser.isEmpty())
|
if (parser.isEmpty())
|
||||||
break;
|
break;
|
||||||
|
else
|
||||||
|
getErrorHandler().warning("Ignoring extra argument", mTokenLoc);
|
||||||
}
|
}
|
||||||
else if (*iter=='z')
|
else if (*iter=='z')
|
||||||
{
|
{
|
||||||
@ -825,6 +829,8 @@ namespace Compiler
|
|||||||
|
|
||||||
if (discardParser.isEmpty())
|
if (discardParser.isEmpty())
|
||||||
break;
|
break;
|
||||||
|
else
|
||||||
|
getErrorHandler().warning("Ignoring extra argument", mTokenLoc);
|
||||||
}
|
}
|
||||||
else if (*iter=='j')
|
else if (*iter=='j')
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user