comparison: js/src/jit-test/tests/asm.js/testBug878520.js
js/src/jit-test/tests/asm.js/testBug878520.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
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); |