summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Iterator/prototype/filter/argument-effect-order.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Iterator/prototype/filter/argument-effect-order.js')
-rw-r--r--js/src/tests/test262/built-ins/Iterator/prototype/filter/argument-effect-order.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Iterator/prototype/filter/argument-effect-order.js b/js/src/tests/test262/built-ins/Iterator/prototype/filter/argument-effect-order.js
new file mode 100644
index 0000000000..64d47cf80c
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Iterator/prototype/filter/argument-effect-order.js
@@ -0,0 +1,33 @@
+// |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: >
+ Arguments and this value are evaluated in the correct order
+info: |
+ %Iterator.prototype%.filter ( predicate )
+
+includes: [compareArray.js]
+features: [iterator-helpers]
+flags: []
+---*/
+let effects = [];
+
+assert.throws(TypeError, function () {
+ Iterator.prototype.filter.call(
+ {
+ get next() {
+ effects.push('get next');
+ return function () {
+ return { done: true, value: undefined };
+ };
+ },
+ },
+ null
+ );
+});
+
+assert.compareArray(effects, []);
+
+reportCompare(0, 0);