From 30e0ca1667e291eb611fbdc1a9578b0d75280160 Mon Sep 17 00:00:00 2001 From: Pooja Soundalgekar Date: Fri, 1 Jul 2016 15:31:49 +0530 Subject: ds_GottoTagVisibilityMO --- data_structures_correct/GotoTagVisibilityMO.js | 28 ++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 data_structures_correct/GotoTagVisibilityMO.js diff --git a/data_structures_correct/GotoTagVisibilityMO.js b/data_structures_correct/GotoTagVisibilityMO.js new file mode 100644 index 0000000..120d632 --- /dev/null +++ b/data_structures_correct/GotoTagVisibilityMO.js @@ -0,0 +1,28 @@ +function GotoTagVisibilityMO() { + + GotoTagVisibilityMO.prototype.define = function GotoTagVisibilityMO() { + + var model = scicos_model(); + model.sim = new ScilabString(["gototagvisibilitymo"]); + model.in = new ScilabDouble(); + model.in2 = new ScilabDouble(); + model.out = new ScilabDouble(); + model.out2 = new ScilabDouble(); + model.evtin = new ScilabDouble(); + model.intyp = new ScilabDouble([1]); + model.outtyp = new ScilabDouble([1]); + model.opar = list(new ScilabString(["A"])); + model.blocktype = new ScilabString(["c"]); + model.firing = new ScilabBoolean([false]); + model.dep_ut = new ScilabBoolean([false, false]); + + var exprs = new ScilabString(["A"]); + + var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"GotoTagVisibilityMO\",sz(1),sz(2));"]); + this.x = new standard_define(new ScilabDouble([2, 2]), model, exprs, gr_i); + return new BasicBlock(this.x); + } + GotoTagVisibilityMO.prototype.details = function GotoTagVisibilityMO() { + return this.x; + } +} -- cgit