diff options
author | Pooja Soundalgekar | 2016-07-01 15:31:49 +0530 |
---|---|---|
committer | Pooja Soundalgekar | 2016-07-01 15:31:49 +0530 |
commit | 30e0ca1667e291eb611fbdc1a9578b0d75280160 (patch) | |
tree | 0a71614cd19a84a20aa952bde9c22f2a50c81c5c | |
parent | 15ceb9618410a78ab139bacbea1de4ca3bcda0fb (diff) | |
download | xcos-on-web-30e0ca1667e291eb611fbdc1a9578b0d75280160.tar.gz xcos-on-web-30e0ca1667e291eb611fbdc1a9578b0d75280160.tar.bz2 xcos-on-web-30e0ca1667e291eb611fbdc1a9578b0d75280160.zip |
ds_GottoTagVisibilityMO
-rw-r--r-- | data_structures_correct/GotoTagVisibilityMO.js | 28 |
1 files changed, 28 insertions, 0 deletions
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; + } +} |