summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/generators/throw-on-finished.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/generators/throw-on-finished.js')
-rw-r--r--js/src/jit-test/tests/generators/throw-on-finished.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/generators/throw-on-finished.js b/js/src/jit-test/tests/generators/throw-on-finished.js
new file mode 100644
index 0000000000..541e48f1f0
--- /dev/null
+++ b/js/src/jit-test/tests/generators/throw-on-finished.js
@@ -0,0 +1,7 @@
+load(libdir + "asserts.js");
+
+function*g(){ };
+o = g();
+o.next();
+function TestException() {};
+assertThrowsInstanceOf(() => o.throw(new TestException()), TestException);