1
0

INC/DECを実装(配列除く)

This commit is contained in:
otya128
2015-07-12 14:42:28 +09:00
parent 60654d16e4
commit 2139875751
4 changed files with 95 additions and 4 deletions

View File

@@ -427,6 +427,7 @@ class Inc : Statement
Expression expression;
this(wstring name, Expression expr)
{
this.type = NodeType.Inc;
this.name = name;
this.expression = expr;
}