comparison: js/src/jit-test/tests/jaeger/bug621655.js
js/src/jit-test/tests/jaeger/bug621655.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 /* Don't assert. */ |
|
2 for(p in 0.3) { } |
|
3 |
|
4 Number.prototype.foo = function() {} |
|
5 var arr = []; |
|
6 |
|
7 for(p in 1.2) { |
|
8 arr.push(p); |
|
9 } |
|
10 assertEq(arr[0], "foo"); |