summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Iterator/prototype/find/iterator-return-method-throws.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Iterator/prototype/find/iterator-return-method-throws.js')
-rw-r--r--js/src/tests/test262/built-ins/Iterator/prototype/find/iterator-return-method-throws.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Iterator/prototype/find/iterator-return-method-throws.js b/js/src/tests/test262/built-ins/Iterator/prototype/find/iterator-return-method-throws.js
new file mode 100644
index 0000000000..52a48361ab
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Iterator/prototype/find/iterator-return-method-throws.js
@@ -0,0 +1,32 @@
+// |reftest| shell-option(--enable-iterator-helpers) skip-if(!this.hasOwnProperty('Iterator')||!xulRuntime.shell) -- iterator-helpers is not enabled unconditionally, requires shell-options
+// Copyright (C) 2023 Michael Ficarra. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-iteratorprototype.find
+description: >
+ Iterator has throwing return
+info: |
+ %Iterator.prototype%.find ( predicate )
+
+features: [iterator-helpers]
+flags: []
+---*/
+class IteratorThrows extends Iterator {
+ next() {
+ return {
+ done: false,
+ value: 0,
+ };
+ }
+ return() {
+ throw new Test262Error();
+ }
+}
+
+let iterator = new IteratorThrows();
+
+assert.throws(Test262Error, function () {
+ iterator.find(() => true);
+});
+
+reportCompare(0, 0);