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/Sinks/WFILE_f.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'js/Sinks/WFILE_f.js') diff --git a/js/Sinks/WFILE_f.js b/js/Sinks/WFILE_f.js index 88a49090..f8d4fc7c 100644 --- a/js/Sinks/WFILE_f.js +++ b/js/Sinks/WFILE_f.js @@ -114,4 +114,13 @@ function WFILE_f() { WFILE_f.prototype.get_popup_title = function WFILE_f() { return this.set_param_popup_title; } + WFILE_f.prototype.importset = function WFILE_f() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.in1 = ary[0]; + this.fname1 = ary[1]; + this.frmt1 = ary[2]; + this.N = ary[3]; + } + WFILE_f.prototype.getContainer = function WFILE_f() { return new BasicBlock(this.x); } } -- cgit