diff options
Diffstat (limited to 'js/IntegerOp/SHIFT.js')
-rw-r--r-- | js/IntegerOp/SHIFT.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/IntegerOp/SHIFT.js b/js/IntegerOp/SHIFT.js index 21285d80..dfdf4b74 100644 --- a/js/IntegerOp/SHIFT.js +++ b/js/IntegerOp/SHIFT.js @@ -136,4 +136,12 @@ function SHIFT() { SHIFT.prototype.get_popup_title = function SHIFT() { return this.set_param_popup_title; } + SHIFT.prototype.importset = function SHIFT() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.Datatype = ary[0]; + this.nb = ary[1]; + this.np = ary[2]; + } + SHIFT.prototype.getContainer = function SHIFT() { return new BasicBlock(this.x); } } |