diff options
Diffstat (limited to 'js/Sources/STEP.js')
-rw-r--r-- | js/Sources/STEP.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/Sources/STEP.js b/js/Sources/STEP.js index e2f455e6..997ee61e 100644 --- a/js/Sources/STEP.js +++ b/js/Sources/STEP.js @@ -16,6 +16,7 @@ function STEP() { exprs = [[string(1)],[string(rpar)]]; gr_i = []; this.x = standard_define([2,2],model,exprs,gr_i); + return new BasicBlock(this.x); } STEP.prototype.details = function STEP() { return this.x; @@ -63,5 +64,6 @@ function STEP() { break; } } + return new BasicBlock(this.x); } } |