From f389f174481df676c841ebcc87a7b8b313921bbc Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Mon, 17 Sep 2018 16:11:31 +0530 Subject: add importset and getContainer to combined.js --- js/Branching/ESELECT_f.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'js/Branching/ESELECT_f.js') diff --git a/js/Branching/ESELECT_f.js b/js/Branching/ESELECT_f.js index 47e27c34..53b8f658 100644 --- a/js/Branching/ESELECT_f.js +++ b/js/Branching/ESELECT_f.js @@ -89,4 +89,12 @@ function ESELECT_f() { ESELECT_f.prototype.get_popup_title = function ESELECT_f() { return this.set_param_popup_title; } + ESELECT_f.prototype.importset = function ESELECT_f() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.out = ary[0]; + this.inh = ary[1]; + this.nmod = ary[2]; + } + ESELECT_f.prototype.getContainer = function ESELECT_f() { return new BasicBlock(this.x); } } -- cgit