summaryrefslogtreecommitdiff
path: root/threads.js
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2013-07-11 17:45:09 +0200
committerjmoenig <jens@moenig.org>2013-07-11 17:45:09 +0200
commit5f88fc93bb9a21eb281c30a2fbd75623113dbafc (patch)
tree0a4d841653026e73927c0bda7007df03bb0ef55c /threads.js
parenteb8aef28c82d86f43ac16d80d5c3a1b6a39561ac (diff)
downloadsnap-yow-5f88fc93bb9a21eb281c30a2fbd75623113dbafc.tar.gz
snap-yow-5f88fc93bb9a21eb281c30a2fbd75623113dbafc.zip
preserve nested reporters in "kicked out" variadic inputs
instead of "swallowing" them. also new: floor() function in monadic math reporter's drop-down
Diffstat (limited to 'threads.js')
-rw-r--r--threads.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/threads.js b/threads.js
index 5aea6ec..c67360a 100644
--- a/threads.js
+++ b/threads.js
@@ -83,7 +83,7 @@ ArgLabelMorph, localize*/
// Global stuff ////////////////////////////////////////////////////////
-modules.threads = '2013-July-09';
+modules.threads = '2013-July-11';
var ThreadManager;
var Process;
@@ -1876,6 +1876,9 @@ Process.prototype.reportMonadic = function (fname, n) {
case 'abs':
result = Math.abs(x);
break;
+ case 'floor':
+ result = Math.floor(x);
+ break;
case 'sqrt':
result = Math.sqrt(x);
break;