1
0

代入の実�

This commit is contained in:
otya128
2015-06-05 21:41:40 +09:00
parent edd9affacc
commit a28ff352fa
4 changed files with 53 additions and 11 deletions

View File

@@ -163,11 +163,11 @@ class Print : Statement
class Assign : Statement
{
wstring name;
Expression expr;
Expression expression;
this(wstring name, Expression expr)
{
this.type = NodeType.Assign;
this.name = name;
this.expr = expr;
this.expression = expr;
}
}