comparison: js/src/jit-test/tests/bug953337.js
js/src/jit-test/tests/bug953337.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 setJitCompilerOption("ion.usecount.trigger", 20); |
|
2 Function.prototype.__proto__ = new Boolean({ get: function() {} }, {}); |
|
3 function g(x, y) {} |
|
4 function f() { |
|
5 g.apply(this, arguments); |
|
6 } |
|
7 for (var i = 0; i < 130; ++i) |
|
8 f(i, i*2); |