diff options
Diffstat (limited to 'js/Misc/LOGICAL_OP.js')
-rw-r--r-- | js/Misc/LOGICAL_OP.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/Misc/LOGICAL_OP.js b/js/Misc/LOGICAL_OP.js index 8937a967..9c2ac4d6 100644 --- a/js/Misc/LOGICAL_OP.js +++ b/js/Misc/LOGICAL_OP.js @@ -140,4 +140,13 @@ function LOGICAL_OP() { LOGICAL_OP.prototype.get_popup_title = function LOGICAL_OP() { return this.set_param_popup_title; } + LOGICAL_OP.prototype.importset = function LOGICAL_OP() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.nin = ary[0]; + this.rule = ary[1]; + this.Datatype = ary[2]; + this.tp = ary[3]; + } + LOGICAL_OP.prototype.getContainer = function LOGICAL_OP() { return new BasicBlock(this.x); } } |