diff options
Diffstat (limited to 'js/IntegerOp')
-rw-r--r-- | js/IntegerOp/BITCLEAR.js | 1 | ||||
-rw-r--r-- | js/IntegerOp/BITSET.js | 1 | ||||
-rw-r--r-- | js/IntegerOp/CONVERT.js | 1 | ||||
-rw-r--r-- | js/IntegerOp/EXTRACTBITS.js | 1 | ||||
-rw-r--r-- | js/IntegerOp/INTMUL.js | 1 | ||||
-rw-r--r-- | js/IntegerOp/LOGIC.js | 1 | ||||
-rw-r--r-- | js/IntegerOp/SHIFT.js | 1 |
7 files changed, 0 insertions, 7 deletions
diff --git a/js/IntegerOp/BITCLEAR.js b/js/IntegerOp/BITCLEAR.js index b8d7ef79..fe9272b7 100644 --- a/js/IntegerOp/BITCLEAR.js +++ b/js/IntegerOp/BITCLEAR.js @@ -33,7 +33,6 @@ function BITCLEAR() { var ok = true; this.Datatype = arguments[0]["Datatype"]; this.bit = parseFloat(arguments[0]["bit"]); - this.exprs = arguments[0]["exprs"]; if (!ok) { break; } diff --git a/js/IntegerOp/BITSET.js b/js/IntegerOp/BITSET.js index 785af65c..1c081016 100644 --- a/js/IntegerOp/BITSET.js +++ b/js/IntegerOp/BITSET.js @@ -33,7 +33,6 @@ function BITSET() { var ok = true; this.Datatype = arguments[0]["Datatype"]; this.bit = parseFloat(arguments[0]["bit"]); - this.exprs = arguments[0]["exprs"]; if (!ok) { break; } diff --git a/js/IntegerOp/CONVERT.js b/js/IntegerOp/CONVERT.js index ced2b9c3..7be0270c 100644 --- a/js/IntegerOp/CONVERT.js +++ b/js/IntegerOp/CONVERT.js @@ -37,7 +37,6 @@ function CONVERT() { this.it = parseFloat(arguments[0]["it"]); this.ot = parseFloat(arguments[0]["ot"]); this.np = arguments[0]["np"]; - this.exprs = arguments[0]["exprs"]; if (!ok) { break; } diff --git a/js/IntegerOp/EXTRACTBITS.js b/js/IntegerOp/EXTRACTBITS.js index 39e19a6f..01d38289 100644 --- a/js/IntegerOp/EXTRACTBITS.js +++ b/js/IntegerOp/EXTRACTBITS.js @@ -38,7 +38,6 @@ function EXTRACTBITS() { this.rule = parseFloat(arguments[0]["rule"]); this.bit = parseFloat(arguments[0]["bit"]); this.scal = arguments[0]["scal"]; - this.exprs = arguments[0]["exprs"]; if (!ok) { break; } diff --git a/js/IntegerOp/INTMUL.js b/js/IntegerOp/INTMUL.js index 5bdb6a8e..448639c2 100644 --- a/js/IntegerOp/INTMUL.js +++ b/js/IntegerOp/INTMUL.js @@ -35,7 +35,6 @@ function INTMUL() { var ok = true; this.Datatype = arguments[0]["Datatype"]; this.np = arguments[0]["np"]; - this.exprs = arguments[0]["exprs"]; if (!ok) { break; } diff --git a/js/IntegerOp/LOGIC.js b/js/IntegerOp/LOGIC.js index 06eb2c10..fe5a24fd 100644 --- a/js/IntegerOp/LOGIC.js +++ b/js/IntegerOp/LOGIC.js @@ -36,7 +36,6 @@ function LOGIC() { var ok = true; this.mat = inverse(arguments[0]["mat"]); this.herit = arguments[0]["herit"]; - this.exprs = arguments[0]["exprs"]; if (!ok) { break; } diff --git a/js/IntegerOp/SHIFT.js b/js/IntegerOp/SHIFT.js index c7d434a7..25eead3c 100644 --- a/js/IntegerOp/SHIFT.js +++ b/js/IntegerOp/SHIFT.js @@ -38,7 +38,6 @@ function SHIFT() { this.Datatype = arguments[0]["Datatype"]; this.nb = arguments[0]["nb"]; this.np = arguments[0]["np"]; - this.exprs = arguments[0]["exprs"]; if (!ok) { break; } |