comparison: js/src/jit-test/tests/asm.js/testBug878520.js
js/src/jit-test/tests/asm.js/testBug878520.js
- changeset 0
- 6474c204b198
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); |