comparison: js/src/jit-test/tests/basic/bug673715.js
js/src/jit-test/tests/basic/bug673715.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function g() { |
|
2 "use strict"; |
|
3 for (var i = 0; i < 50; i++) |
|
4 arguments[0]; |
|
5 eval(""); |
|
6 } |
|
7 function f() { |
|
8 g.call(arguments); |
|
9 } |
|
10 f(); |