comparison: js/src/jit-test/tests/jaeger/bug771871.js
js/src/jit-test/tests/jaeger/bug771871.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 function test() { |
|
2 var box = { call: function () { return 42.1; } }; |
|
3 for (var i = 0; i < 50; i++) { |
|
4 assertEq(box.call(undefined, 42.1), 42.1); |
|
5 } |
|
6 } |
|
7 test(); |