comparison: js/src/jit-test/tests/for-of/arrays-slow-4.js
js/src/jit-test/tests/for-of/arrays-slow-4.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 // for-of on an empty slow array does nothing. |
|
2 |
|
3 var a = []; |
|
4 a.slow = true; |
|
5 for (var x of a) |
|
6 fail(); |