1
0

Implement GOSUB/GOTO x:@LABEL

This commit is contained in:
otya128
2016-12-29 16:16:56 +09:00
parent 5c6ec3e9e0
commit abdd6cdc8c
3 changed files with 71 additions and 17 deletions

View File

@@ -1032,7 +1032,7 @@ class Compiler
else
{
compileExpression(gosub.labelexpr, s);
genCode(new GosubExpr(s));
genCode(new GosubExpr());
}
}
break;