summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/collections/WeakMap-constructor-generator-exception.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/collections/WeakMap-constructor-generator-exception.js')
-rw-r--r--js/src/jit-test/tests/collections/WeakMap-constructor-generator-exception.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/collections/WeakMap-constructor-generator-exception.js b/js/src/jit-test/tests/collections/WeakMap-constructor-generator-exception.js
new file mode 100644
index 0000000000..996b8e7c73
--- /dev/null
+++ b/js/src/jit-test/tests/collections/WeakMap-constructor-generator-exception.js
@@ -0,0 +1,13 @@
+// Iterating over the argument to WeakMap can throw. The exception is
+// propagated.
+
+load(libdir + "asserts.js");
+
+function* data() {
+ yield [{}, "XR22/Z"];
+ yield [{}, "23D-BN"];
+ throw "oops";
+}
+
+var it2 = data();
+assertThrowsValue(() => new WeakMap(it2), "oops");