comparison: js/src/jit-test/tests/asm.js/testBug878520.js
js/src/jit-test/tests/asm.js/testBug878520.js
- branch
- TOR_BUG_3246
- changeset 6
- 8bccb770b82d
equal
deleted
inserted
replaced
|
1 function surprise(depth) { |
|
2 arguments.callee.caller(depth); |
|
3 } |
|
4 |
|
5 (function(depth) { |
|
6 function foo() { function asmModule() { 'use asm'; return {} } }; |
|
7 if (depth) |
|
8 surprise(depth - 1); |
|
9 })(2); |