]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/class-syntax-tdz-in-loop.js
8 for (var j
= 0; j
< 100; j
++) {
19 for (var i
= 0; i
< 10000; ++i
) {
25 if (!(e
instanceof ReferenceError
))
26 throw "Exception thrown in iteration " + i
+ " was not a reference error";
29 throw "Exception not thrown for an unitialized this at iteration " + i
;