summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Iterator/prototype/take/callable.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Iterator/prototype/take/callable.js')
-rw-r--r--js/src/tests/test262/built-ins/Iterator/prototype/take/callable.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Iterator/prototype/take/callable.js b/js/src/tests/test262/built-ins/Iterator/prototype/take/callable.js
new file mode 100644
index 0000000000..adb37486b4
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Iterator/prototype/take/callable.js
@@ -0,0 +1,16 @@
+// |reftest| shell-option(--enable-iterator-helpers) skip-if(!this.hasOwnProperty('Iterator')||!xulRuntime.shell) -- iterator-helpers is not enabled unconditionally, requires shell-options
+// Copyright (C) 2020 Rick Waldron. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-iteratorprototype.take
+description: >
+ Iterator.prototype.take is callable
+features: [iterator-helpers]
+---*/
+function* g() {}
+Iterator.prototype.take.call(g(), 0);
+
+let iter = g();
+iter.take(0);
+
+reportCompare(0, 0);