made sure hyperization can be turned off

pull/95/head
jmoenig 2020-05-06 14:32:56 +02:00
rodzic 9baaa2f953
commit 13cc682d0b
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -61,7 +61,7 @@ StageMorph, SpriteMorph, StagePrompterMorph, Note, modules, isString, copy, Map,
isNil, WatcherMorph, List, ListWatcherMorph, alert, console, TableMorph, Color,
TableFrameMorph, ColorSlotMorph, isSnapObject, newCanvas, Symbol, SVG_Costume*/
modules.threads = '2020-May-04';
modules.threads = '2020-May-06';
var ThreadManager;
var Process;
@ -3465,8 +3465,9 @@ Process.prototype.hyperDyadic = function (baseOp, a, b) {
b.asArray().map(each => this.hyperZip(baseOp, a, each))
);
}
return this.hyperZip(baseOp, a, b);
}
return this.hyperZip(baseOp, a, b);
return baseOp(a, b);
};
Process.prototype.isMatrix = function (value) {