1
0

INC/DECを配列に対応させた

This commit is contained in:
otya128
2016-08-31 23:16:44 +09:00
parent ed8017b4e0
commit f6557d2e9a
5 changed files with 316 additions and 20 deletions

View File

@@ -474,9 +474,9 @@ class While : Statement
}
class Inc : Statement
{
wstring name;
Expression name;
Expression expression;
this(wstring name, Expression expr, SourceLocation loc)
this(Expression name, Expression expr, SourceLocation loc)
{
super.location = loc;
this.type = NodeType.Inc;