1
0

Fix input

This commit is contained in:
otya128
2016-12-29 17:33:40 +09:00
parent 706bb3715d
commit c0f1e4e9e5

View File

@@ -1212,7 +1212,7 @@ class Parser
} }
Input input = new Input(null, true, lex.location); Input input = new Input(null, true, lex.location);
input.addVariable(message); input.addVariable(message);
do while(token.type == TokenType.Comma)
{ {
lex.popFront(); lex.popFront();
auto expr = expression(); auto expr = expression();
@@ -1222,7 +1222,7 @@ class Parser
} }
input.addVariable(expr); input.addVariable(expr);
token = lex.front(); token = lex.front();
} while(token.type == TokenType.Comma); }
return input; return input;
} }