1
0

Fix GotoExpr to use VM.currentFunction

This commit is contained in:
otya128
2016-12-24 19:40:24 +09:00
parent ce71082b29
commit 2c970f6dea
2 changed files with 4 additions and 6 deletions

View File

@@ -1007,7 +1007,7 @@ class Compiler
if(!gotou.label)
{
compileExpression(gotou.labelexpr, s);
genCode(new GotoExpr(s));
genCode(new GotoExpr());
}
else
{