summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Iterator/prototype/take/limit-tonumber-throws.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Iterator/prototype/take/limit-tonumber-throws.js')
-rw-r--r--js/src/tests/test262/built-ins/Iterator/prototype/take/limit-tonumber-throws.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Iterator/prototype/take/limit-tonumber-throws.js b/js/src/tests/test262/built-ins/Iterator/prototype/take/limit-tonumber-throws.js
new file mode 100644
index 0000000000..94e0dd22e8
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Iterator/prototype/take/limit-tonumber-throws.js
@@ -0,0 +1,25 @@
+// |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.take
+description: >
+ Throws a RangeError exception when limit argument valueOf throws.
+info: |
+ %Iterator.prototype%.take ( limit )
+
+ 3. Let numLimit be ? ToNumber(limit).
+
+features: [iterator-helpers]
+---*/
+let iterator = (function* () {})();
+
+assert.throws(Test262Error, () => {
+ iterator.take({
+ valueOf: function () {
+ throw new Test262Error();
+ },
+ });
+});
+
+reportCompare(0, 0);