1
0

Implement DIALOG(3)

This commit is contained in:
otya128
2016-12-26 22:16:22 +09:00
parent 80bc64ee9c
commit 0f5c8e08a2
2 changed files with 26 additions and 7 deletions

View File

@@ -1894,13 +1894,6 @@ class Parser
token = lex.front();
if(token.type == TokenType.RParen) break;
if(token.type == TokenType.Comma)
{
func.addArg(new VoidExpression(lex.location));
lex.popFront();
token = lex.front();
}
else
func.addArg(expression());
if(lex.front().type == TokenType.RParen) break;
}