1
0

VAR name=exprを実装

This commit is contained in:
otya128
2016-08-31 17:04:50 +09:00
parent e9c94f5bbd
commit 9b0d7c0a8c
2 changed files with 4 additions and 1 deletions

View File

@@ -656,6 +656,8 @@ class Compiler
{
DefineVariable var = cast(DefineVariable)v;
defineVarIndex(var.name, sc);
compileExpression(var.expression, sc);
genCodePopVar(var.name, sc);
continue;
}
if(v.type == NodeType.DefineArray)