summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Iterator/prototype/filter/this-non-callable-next.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Iterator/prototype/filter/this-non-callable-next.js')
-rw-r--r--js/src/tests/test262/built-ins/Iterator/prototype/filter/this-non-callable-next.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Iterator/prototype/filter/this-non-callable-next.js b/js/src/tests/test262/built-ins/Iterator/prototype/filter/this-non-callable-next.js
new file mode 100644
index 0000000000..f87ac0f62c
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Iterator/prototype/filter/this-non-callable-next.js
@@ -0,0 +1,22 @@
+// |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.filter
+description: >
+ Iterator.prototype.filter throws TypeError when its this value is an object with a non-callable next
+info: |
+ %Iterator.prototype%.filter ( predicate )
+
+ 1. Let iterated be ? GetIteratorDirect(this value).
+
+features: [iterator-helpers]
+flags: []
+---*/
+let iter = Iterator.prototype.filter.call({ next: 0 }, () => true);
+
+assert.throws(TypeError, function () {
+ iter.next();
+});
+
+reportCompare(0, 0);