1
0
This commit is contained in:
otya128
2016-12-23 22:08:46 +09:00
parent f0b598e35e
commit 58cf9048a5
4 changed files with 51 additions and 26 deletions

View File

@@ -1272,9 +1272,9 @@ class Parser
} while(token.type == TokenType.Comma);
return on;
}
Data dataStatement()
otya.smilebasic.node.Data dataStatement()
{
Data data = new Data(lex.location);
otya.smilebasic.node.Data data = new otya.smilebasic.node.Data(lex.location);
lex.popFront();
auto token = lex.front();
while(true)