diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-05-13 13:01:45 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-05-13 13:01:45 -0700 |
commit | b90a590f024d12650112ee15fbbf24cdea082ed1 (patch) | |
tree | a9ec7764d51ed3179454ba5b78615a54f4795508 /src/runtime.js | |
parent | 3b0b45be2be74f0bfd49a59812fe84615d90d9d4 (diff) |
misc tweaks and add wip cube_explosion test
Diffstat (limited to 'src/runtime.js')
-rw-r--r-- | src/runtime.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime.js b/src/runtime.js index 6a251c46..1f8a618f 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -349,7 +349,7 @@ var Runtime = { return arg + '\n\n'; } if (arg.byteLength) { - return '{' + Array.prototype.slice.call(arg, 0, Math.min(arg.length, 40)) + '}'; // Useful for correct arrays, less so for compiled arrays, see the code below for that + return '{' + Array.prototype.slice.call(arg, 0, Math.min(arg.length, 400)) + '}'; // Useful for correct arrays, less so for compiled arrays, see the code below for that var buf = new ArrayBuffer(32); var i8buf = new Int8Array(buf); var i16buf = new Int16Array(buf); |