diff options
Diffstat (limited to 'js/Branching/GOTO.js')
-rw-r--r-- | js/Branching/GOTO.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/Branching/GOTO.js b/js/Branching/GOTO.js index c7355935..7c2de99e 100644 --- a/js/Branching/GOTO.js +++ b/js/Branching/GOTO.js @@ -17,6 +17,7 @@ function GOTO() { gr_i = []; this.x = standard_define([2,1],model,exprs,gr_i); this.x.graphics.id = "Goto"; + return new BasicBlock(this.x); } GOTO.prototype.details = function GOTO() { return this.x; @@ -53,5 +54,6 @@ function GOTO() { } } needcompile=resume(needcompile) + return new BasicBlock(this.x); } } |