summaryrefslogtreecommitdiff
path: root/js/Sources/IN_f.js
diff options
context:
space:
mode:
authorSunil Shetye2018-06-26 14:59:47 +0530
committerSunil Shetye2018-06-26 14:59:47 +0530
commiteb7c8e0cd42d4afe02be3adda2e94b6b0dfdaa00 (patch)
tree6378935263fe5cafd389b6893ac3b37a1dd4b1a7 /js/Sources/IN_f.js
parentafed64f1a0eab0b2d742088186d7bc340a2c895b (diff)
downloadsci2js-eb7c8e0cd42d4afe02be3adda2e94b6b0dfdaa00.tar.gz
sci2js-eb7c8e0cd42d4afe02be3adda2e94b6b0dfdaa00.tar.bz2
sci2js-eb7c8e0cd42d4afe02be3adda2e94b6b0dfdaa00.zip
add return value from scicos_getvalue to global vars
Diffstat (limited to 'js/Sources/IN_f.js')
-rw-r--r--js/Sources/IN_f.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/Sources/IN_f.js b/js/Sources/IN_f.js
index d6ea593f..5c6512de 100644
--- a/js/Sources/IN_f.js
+++ b/js/Sources/IN_f.js
@@ -13,7 +13,7 @@ function IN_f() {
exprs = sci2exp(prt);
gr_i = [];
this.x = standard_define([1,1],model,exprs,gr_i);
- return new BasicBlock(this.x);
+ return new ExplicitInBlock(this.x);
}
IN_f.prototype.details = function IN_f() {
return this.x;
@@ -59,6 +59,6 @@ function IN_f() {
break;
}
}
- return new BasicBlock(this.x);
+ return new ExplicitInBlock(this.x);
}
}