summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/onExceptionUnwind-15.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/debug/onExceptionUnwind-15.js')
-rw-r--r--js/src/jit-test/tests/debug/onExceptionUnwind-15.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/onExceptionUnwind-15.js b/js/src/jit-test/tests/debug/onExceptionUnwind-15.js
new file mode 100644
index 0000000000..4e4361abe8
--- /dev/null
+++ b/js/src/jit-test/tests/debug/onExceptionUnwind-15.js
@@ -0,0 +1,25 @@
+// Test that Ion->Baseline in-place debug mode bailout can recover the iterator
+// from the snapshot in a for-of loop.
+
+g = newGlobal({newCompartment: true});
+g.parent = this;
+g.eval("Debugger(parent).onExceptionUnwind=(function() {})");
+function* throwInNext() {
+ yield 1;
+ yield 2;
+ yield 3;
+ throw 42;
+}
+
+function f() {
+ for (var o of throwInNext());
+}
+
+var log = "";
+try {
+ f();
+} catch (e) {
+ log += e;
+}
+
+assertEq(log, "42");