diff options
Diffstat (limited to 'js/src/jit-test/tests/for-of/iterclose-invalidate-with-catch.js')
-rw-r--r-- | js/src/jit-test/tests/for-of/iterclose-invalidate-with-catch.js | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/for-of/iterclose-invalidate-with-catch.js b/js/src/jit-test/tests/for-of/iterclose-invalidate-with-catch.js new file mode 100644 index 0000000000..5f5cdd7645 --- /dev/null +++ b/js/src/jit-test/tests/for-of/iterclose-invalidate-with-catch.js @@ -0,0 +1,54 @@ +var invalidate = false; +var caught = false; + +const iterable = { + [Symbol.iterator]() { + return { + i: 0, + next() { + return { value: this.i++, done: false } + }, + return() { + if (invalidate) { + // Invalidate Ion scripts. + gc(closeIter, 'shrinking'); + return undefined; + } + return { value: "return", done: true }; + } + }; + } +} + +function closeIter(o) { + try { + for (var x of o) { + if (x == 2) { + break; + } + } + } catch(e) { + caught = true; + } +} + +function test() { + with ({}) {} + for (var i = 0; i < 100; i++) { + closeIter(iterable); + } + invalidate = true; + closeIter(iterable); + assertEq(caught, true); + invalidate = false; + caught = false; +} + +with ({}) {} + +test(); + +// Force an IC in Ion. +closeIter([1,2,3,4,5]); + +test(); |