diff options
Diffstat (limited to 'js/Sources/CONST.js')
-rw-r--r-- | js/Sources/CONST.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/Sources/CONST.js b/js/Sources/CONST.js index 509e6271..35f02d3a 100644 --- a/js/Sources/CONST.js +++ b/js/Sources/CONST.js @@ -12,6 +12,7 @@ function CONST() { exprs = strcat(sci2exp(C)); gr_i = []; this.x = standard_define([2,2],model,exprs,gr_i); + return new BasicBlock(this.x); } CONST.prototype.details = function CONST() { return this.x; @@ -43,5 +44,6 @@ function CONST() { break; } } + return new BasicBlock(this.x); } } |