kopia lustrzana https://github.com/backface/turtlestitch
bignum library: fixed IS IDENTICAL
rodzic
f926c8f5a3
commit
e73c5d0802
|
@ -50,6 +50,7 @@
|
||||||
* blocks: tweaked blocks layout for hidden expansion slots
|
* blocks: tweaked blocks layout for hidden expansion slots
|
||||||
* blocks, objects, store, threads: made SEND blocks expandable for receivers and renamed them back to BROADCAST
|
* blocks, objects, store, threads: made SEND blocks expandable for receivers and renamed them back to BROADCAST
|
||||||
* threads: deep copy atomic lists sent from one scene to another
|
* threads: deep copy atomic lists sent from one scene to another
|
||||||
|
* bignum library: fixed IS IDENTICAL
|
||||||
|
|
||||||
### 2021-10-21
|
### 2021-10-21
|
||||||
* threads, objects: make "when I receive 'any message'" hat scripts threadsafe (uninterruptable by other messages)
|
* threads, objects: make "when I receive 'any message'" hat scripts threadsafe (uninterruptable by other messages)
|
||||||
|
|
|
@ -266,7 +266,7 @@ function loadBlocks (useBigNums) {
|
||||||
reportIsIdentical: function (a, b) {
|
reportIsIdentical: function (a, b) {
|
||||||
x = parseNumber(a);
|
x = parseNumber(a);
|
||||||
y = parseNumber(b);
|
y = parseNumber(b);
|
||||||
if (Number.isNaN(x) || Number.isNaN(y)) return originalPrims.reportIsIdentical(a, b);
|
if (Number.isNaN(x) || Number.isNaN(y)) return originalPrims.reportIsIdentical.call(this, a, b);
|
||||||
return fn['='](x, y);
|
return fn['='](x, y);
|
||||||
},
|
},
|
||||||
reportMonadic: function (fname, n) {
|
reportMonadic: function (fname, n) {
|
||||||
|
|
Ładowanie…
Reference in New Issue