]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/for-in-modify-int-loop-var.js
2 // Change integer value of the loop variable in the loop.
13 for (var i
= 0; i
< 10000; ++i
) {
15 if (typeof result
!== "string")
16 throw new Error("result should have type string");
17 if (result
!== "0010110210")
18 throw new Error("bad result");