diff --git a/snap.html b/snap.html index 8ee18355..5daf53fa 100755 --- a/snap.html +++ b/snap.html @@ -8,7 +8,7 @@ - + diff --git a/src/threads.js b/src/threads.js index c315b8ae..8f014ebf 100644 --- a/src/threads.js +++ b/src/threads.js @@ -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-June-24'; +modules.threads = '2020-June-25'; var ThreadManager; var Process; @@ -3589,16 +3589,6 @@ Process.prototype.hyperZip = function (baseOp, a, b) { return baseOp(a, b); }; -Process.prototype.dimensions = function (data) { - var dim = [], - cur = data; - while (cur instanceof List) { - dim.push(cur.length()); - cur = cur.at(1); - } - return dim; -}; - Process.prototype.isMatrix = function (data) { return data instanceof List && data.at(1) instanceof List; };