summaryrefslogtreecommitdiff
path: root/js/Sources
diff options
context:
space:
mode:
Diffstat (limited to 'js/Sources')
-rw-r--r--js/Sources/CLKINV_f.js1
-rw-r--r--js/Sources/CLKIN_f.js1
-rw-r--r--js/Sources/CLOCK_c.js1
-rw-r--r--js/Sources/CLOCK_f.js1
-rw-r--r--js/Sources/CONST.js1
-rw-r--r--js/Sources/CONST_f.js1
-rw-r--r--js/Sources/CONST_m.js1
-rw-r--r--js/Sources/CURVE_c.js1
-rw-r--r--js/Sources/Counter.js1
-rw-r--r--js/Sources/FROMWS_c.js1
-rw-r--r--js/Sources/GENSIN_f.js1
-rw-r--r--js/Sources/GENSQR_f.js1
-rw-r--r--js/Sources/GEN_SQR.js1
-rw-r--r--js/Sources/INIMPL_f.js1
-rw-r--r--js/Sources/Modulo_Count.js1
-rw-r--r--js/Sources/PULSE_SC.js1
-rw-r--r--js/Sources/RAMP.js1
-rw-r--r--js/Sources/RAND_f.js1
-rw-r--r--js/Sources/RAND_m.js1
-rw-r--r--js/Sources/READAU_f.js1
-rw-r--r--js/Sources/READC_f.js1
-rw-r--r--js/Sources/RFILE_f.js1
-rw-r--r--js/Sources/STEP.js1
-rw-r--r--js/Sources/SampleCLK.js1
-rw-r--r--js/Sources/TKSCALE.js1
25 files changed, 25 insertions, 0 deletions
diff --git a/js/Sources/CLKINV_f.js b/js/Sources/CLKINV_f.js
index 0bef1a8a..8f878294 100644
--- a/js/Sources/CLKINV_f.js
+++ b/js/Sources/CLKINV_f.js
@@ -29,6 +29,7 @@ function CLKINV_f() {
while (true) {
var ok = true;
this.prt = parseFloat(arguments[0]["prt"]);
+ var exprs = [arguments[0]["prt"]];
this.prt = int(this.prt);
if (!ok) {
break;
diff --git a/js/Sources/CLKIN_f.js b/js/Sources/CLKIN_f.js
index 9ab117f1..f3f27a7a 100644
--- a/js/Sources/CLKIN_f.js
+++ b/js/Sources/CLKIN_f.js
@@ -28,6 +28,7 @@ function CLKIN_f() {
while (true) {
var ok = true;
this.prt = parseFloat(arguments[0]["prt"]);
+ var exprs = [arguments[0]["prt"]];
this.prt = int(this.prt);
if (!ok) {
break;
diff --git a/js/Sources/CLOCK_c.js b/js/Sources/CLOCK_c.js
index 38e720c0..3d26fb6f 100644
--- a/js/Sources/CLOCK_c.js
+++ b/js/Sources/CLOCK_c.js
@@ -68,6 +68,7 @@ function CLOCK_c() {
var ok = true;
this.dt = arguments[0]["dt"];
this.t0 = arguments[0]["t0"];
+ var exprs0 = [arguments[0]["dt"], arguments[0]["t0"]];
if (!ok) {
break;
}
diff --git a/js/Sources/CLOCK_f.js b/js/Sources/CLOCK_f.js
index 2423b114..bfb4e031 100644
--- a/js/Sources/CLOCK_f.js
+++ b/js/Sources/CLOCK_f.js
@@ -68,6 +68,7 @@ function CLOCK_f() {
var ok = true;
this.dt = arguments[0]["dt"];
this.t0 = arguments[0]["t0"];
+ var exprs0 = [arguments[0]["dt"], arguments[0]["t0"]];
if (!ok) {
break;
}
diff --git a/js/Sources/CONST.js b/js/Sources/CONST.js
index 622aa076..7bd1fcef 100644
--- a/js/Sources/CONST.js
+++ b/js/Sources/CONST.js
@@ -28,6 +28,7 @@ function CONST() {
while (true) {
var ok = true;
this.C = parseFloat(arguments[0]["C"]);
+ var exprs = [arguments[0]["C"]];
if (!ok) {
break;
}
diff --git a/js/Sources/CONST_f.js b/js/Sources/CONST_f.js
index f1eeacb5..2b7d8d00 100644
--- a/js/Sources/CONST_f.js
+++ b/js/Sources/CONST_f.js
@@ -28,6 +28,7 @@ function CONST_f() {
while (true) {
var ok = true;
this.C = parseFloat(arguments[0]["C"]);
+ var exprs = [arguments[0]["C"]];
if (!ok) {
break;
}
diff --git a/js/Sources/CONST_m.js b/js/Sources/CONST_m.js
index 947dfa5a..3260b4b9 100644
--- a/js/Sources/CONST_m.js
+++ b/js/Sources/CONST_m.js
@@ -31,6 +31,7 @@ function CONST_m() {
while (true) {
var ok = true;
this.C = inverse(arguments[0]["C"]);
+ var exprs = [arguments[0]["C"]];
if (!ok) {
break;
}
diff --git a/js/Sources/CURVE_c.js b/js/Sources/CURVE_c.js
index 273e3152..66164884 100644
--- a/js/Sources/CURVE_c.js
+++ b/js/Sources/CURVE_c.js
@@ -48,6 +48,7 @@ function CURVE_c() {
this.yy = inverse(arguments[0]["yy"]);
this.PeriodicOption = arguments[0]["PeriodicOption"];
this.graf = arguments[0]["graf"];
+ var exprs = [arguments[0]["Method"], arguments[0]["xx"], arguments[0]["yy"], arguments[0]["PeriodicOption"], arguments[0]["graf"]];
if (!ok) {
break;
}
diff --git a/js/Sources/Counter.js b/js/Sources/Counter.js
index 6bef916b..5cd512f5 100644
--- a/js/Sources/Counter.js
+++ b/js/Sources/Counter.js
@@ -36,6 +36,7 @@ function Counter() {
this.minim = parseFloat(arguments[0]["minim"]);
this.maxim = parseFloat(arguments[0]["maxim"]);
this.rule = parseFloat(arguments[0]["rule"]);
+ var exprs = [arguments[0]["minim"], arguments[0]["maxim"], arguments[0]["rule"]];
if (!ok) {
break;
}
diff --git a/js/Sources/FROMWS_c.js b/js/Sources/FROMWS_c.js
index 208c8665..15c15f32 100644
--- a/js/Sources/FROMWS_c.js
+++ b/js/Sources/FROMWS_c.js
@@ -41,6 +41,7 @@ function FROMWS_c() {
this.Method = parseFloat(arguments[0]["Method"]);
this.ZC = parseFloat(arguments[0]["ZC"]);
this.OutEnd = parseFloat(arguments[0]["OutEnd"]);
+ var exprs = [arguments[0]["varnam"], arguments[0]["Method"], arguments[0]["ZC"], arguments[0]["OutEnd"]];
if (!ok) {
break;
}
diff --git a/js/Sources/GENSIN_f.js b/js/Sources/GENSIN_f.js
index 5563c011..621851cb 100644
--- a/js/Sources/GENSIN_f.js
+++ b/js/Sources/GENSIN_f.js
@@ -34,6 +34,7 @@ function GENSIN_f() {
this.M = arguments[0]["M"];
this.F = arguments[0]["F"];
this.P = arguments[0]["P"];
+ var exprs = [arguments[0]["M"], arguments[0]["F"], arguments[0]["P"]];
if (!ok) {
break;
}
diff --git a/js/Sources/GENSQR_f.js b/js/Sources/GENSQR_f.js
index 649ac7e3..c4061ffa 100644
--- a/js/Sources/GENSQR_f.js
+++ b/js/Sources/GENSQR_f.js
@@ -33,6 +33,7 @@ function GENSQR_f() {
while (true) {
var ok = true;
this.Amplitude = parseFloat(arguments[0]["Amplitude"]);
+ var exprs = [arguments[0]["Amplitude"]];
if (!ok) {
break;
}
diff --git a/js/Sources/GEN_SQR.js b/js/Sources/GEN_SQR.js
index 62b33975..59afac78 100644
--- a/js/Sources/GEN_SQR.js
+++ b/js/Sources/GEN_SQR.js
@@ -78,6 +78,7 @@ function GEN_SQR() {
this.scicos_context.Amax = arguments[0]["scicos_context.Amax"];
this.scicos_context.rule = arguments[0]["scicos_context.rule"];
this.scicos_context.F = arguments[0]["scicos_context.F"];
+ var exprs = [arguments[0]["scicos_context.Amin"], arguments[0]["scicos_context.Amax"], arguments[0]["scicos_context.rule"], arguments[0]["scicos_context.F"]];
if (!ok) {
return;
}
diff --git a/js/Sources/INIMPL_f.js b/js/Sources/INIMPL_f.js
index 2ec7e18a..757a3ae6 100644
--- a/js/Sources/INIMPL_f.js
+++ b/js/Sources/INIMPL_f.js
@@ -36,6 +36,7 @@ function INIMPL_f() {
while (true) {
var ok = true;
this.prt = parseFloat(arguments[0]["prt"]);
+ var exprs = [arguments[0]["prt"]];
if (!ok) {
break;
}
diff --git a/js/Sources/Modulo_Count.js b/js/Sources/Modulo_Count.js
index 700f8242..d6c37e8e 100644
--- a/js/Sources/Modulo_Count.js
+++ b/js/Sources/Modulo_Count.js
@@ -32,6 +32,7 @@ function Modulo_Count() {
var ok = true;
this.ini_c = parseFloat(arguments[0]["ini_c"]);
this.base = parseFloat(arguments[0]["base"]);
+ var exprs = [arguments[0]["ini_c"], arguments[0]["base"]];
this.ini_c = int(this.ini_c);
this.base = int(this.base);
if (!ok) {
diff --git a/js/Sources/PULSE_SC.js b/js/Sources/PULSE_SC.js
index f8aba75b..c1bd8dc8 100644
--- a/js/Sources/PULSE_SC.js
+++ b/js/Sources/PULSE_SC.js
@@ -73,6 +73,7 @@ function PULSE_SC() {
this.scicos_context.W = arguments[0]["scicos_context.W"];
this.scicos_context.F = arguments[0]["scicos_context.F"];
this.scicos_context.A = arguments[0]["scicos_context.A"];
+ var exprs = [arguments[0]["scicos_context.E"], arguments[0]["scicos_context.W"], arguments[0]["scicos_context.F"], arguments[0]["scicos_context.A"]];
if (!ok) {
return;
}
diff --git a/js/Sources/RAMP.js b/js/Sources/RAMP.js
index e16ff3d8..f49c9ca1 100644
--- a/js/Sources/RAMP.js
+++ b/js/Sources/RAMP.js
@@ -37,6 +37,7 @@ function RAMP() {
this.slope = parseFloat(arguments[0]["slope"]);
this.stt = parseFloat(arguments[0]["stt"]);
this.iout = parseFloat(arguments[0]["iout"]);
+ var exprs = [arguments[0]["slope"], arguments[0]["stt"], arguments[0]["iout"]];
if (!ok) {
break;
}
diff --git a/js/Sources/RAND_f.js b/js/Sources/RAND_f.js
index 574ed4e6..95b91026 100644
--- a/js/Sources/RAND_f.js
+++ b/js/Sources/RAND_f.js
@@ -46,6 +46,7 @@ function RAND_f() {
this.a = parseFloat(arguments[0]["a"]);
this.b = parseFloat(arguments[0]["b"]);
this.seed_c = arguments[0]["seed_c"];
+ var exprs = [arguments[0]["flag"], arguments[0]["a"], arguments[0]["b"], arguments[0]["seed_c"]];
if (!ok) {
break;
}
diff --git a/js/Sources/RAND_m.js b/js/Sources/RAND_m.js
index 2ef1a248..d4f2ae03 100644
--- a/js/Sources/RAND_m.js
+++ b/js/Sources/RAND_m.js
@@ -54,6 +54,7 @@ function RAND_m() {
this.a = parseFloat(arguments[0]["a"]);
this.b = parseFloat(arguments[0]["b"]);
this.seed_c = arguments[0]["seed_c"];
+ var exprs = [arguments[0]["typ"], arguments[0]["flag"], arguments[0]["a"], arguments[0]["b"], arguments[0]["seed_c"]];
if (!ok) {
break;
}
diff --git a/js/Sources/READAU_f.js b/js/Sources/READAU_f.js
index 8b9cce2f..a6a73f59 100644
--- a/js/Sources/READAU_f.js
+++ b/js/Sources/READAU_f.js
@@ -50,6 +50,7 @@ function READAU_f() {
this.fname1 = parseFloat(arguments[0]["fname1"]);
this.N = parseFloat(arguments[0]["N"]);
this.swap = parseFloat(arguments[0]["swap"]);
+ var exprs = [arguments[0]["fname1"], arguments[0]["N"], arguments[0]["swap"]];
var tmask1 = [];
var outmask = 1;
var frmt1 = "uc";
diff --git a/js/Sources/READC_f.js b/js/Sources/READC_f.js
index 37ca7bfe..c50c8718 100644
--- a/js/Sources/READC_f.js
+++ b/js/Sources/READC_f.js
@@ -66,6 +66,7 @@ function READC_f() {
this.N = parseFloat(arguments[0]["N"]);
this.offset = parseFloat(arguments[0]["offset"]);
this.swap = parseFloat(arguments[0]["swap"]);
+ var exprs = [arguments[0]["tmask1"], arguments[0]["outmask"], arguments[0]["fname1"], arguments[0]["frmt1"], arguments[0]["M"], arguments[0]["N"], arguments[0]["offset"], arguments[0]["swap"]];
if (!ok) {
break;
}
diff --git a/js/Sources/RFILE_f.js b/js/Sources/RFILE_f.js
index 7fc307df..bd682931 100644
--- a/js/Sources/RFILE_f.js
+++ b/js/Sources/RFILE_f.js
@@ -59,6 +59,7 @@ function RFILE_f() {
this.fname1 = parseFloat(arguments[0]["fname1"]);
this.frmt1 = parseFloat(arguments[0]["frmt1"]);
this.N = parseFloat(arguments[0]["N"]);
+ var exprs = [arguments[0]["tmask1"], arguments[0]["outmask"], arguments[0]["fname1"], arguments[0]["frmt1"], arguments[0]["N"]];
if (!ok) {
break;
}
diff --git a/js/Sources/STEP.js b/js/Sources/STEP.js
index 79070f6e..4c6c6f7a 100644
--- a/js/Sources/STEP.js
+++ b/js/Sources/STEP.js
@@ -36,6 +36,7 @@ function STEP() {
this.temps = arguments[0]["temps"];
this.in1 = arguments[0]["in1"];
this.fi = arguments[0]["fi"];
+ var exprs = [arguments[0]["temps"], arguments[0]["in1"], arguments[0]["fi"]];
if (!ok) {
break;
}
diff --git a/js/Sources/SampleCLK.js b/js/Sources/SampleCLK.js
index a69d9f54..c563276a 100644
--- a/js/Sources/SampleCLK.js
+++ b/js/Sources/SampleCLK.js
@@ -28,6 +28,7 @@ function SampleCLK() {
var ok = true;
this.frequ = arguments[0]["frequ"];
this.offset = arguments[0]["offset"];
+ var exprs = [arguments[0]["frequ"], arguments[0]["offset"]];
if (!ok) {
break;
}
diff --git a/js/Sources/TKSCALE.js b/js/Sources/TKSCALE.js
index a1a08bf3..b4529690 100644
--- a/js/Sources/TKSCALE.js
+++ b/js/Sources/TKSCALE.js
@@ -33,6 +33,7 @@ function TKSCALE() {
this.a = parseFloat(arguments[0]["a"]);
this.b = parseFloat(arguments[0]["b"]);
this.f = parseFloat(arguments[0]["f"]);
+ var exprs = [arguments[0]["a"], arguments[0]["b"], arguments[0]["f"]];
if (ok) {
this.graphics.exprs = new ScilabDouble([exprs]);
this.model.rpar = new ScilabDouble([this.a],[this.b],[this.f]);