summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/prototype/entries/BigInt/return-itor.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/TypedArray/prototype/entries/BigInt/return-itor.js')
-rw-r--r--js/src/tests/test262/built-ins/TypedArray/prototype/entries/BigInt/return-itor.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/TypedArray/prototype/entries/BigInt/return-itor.js b/js/src/tests/test262/built-ins/TypedArray/prototype/entries/BigInt/return-itor.js
new file mode 100644
index 0000000000..a0a0b1519b
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArray/prototype/entries/BigInt/return-itor.js
@@ -0,0 +1,36 @@
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-%typedarray%.prototype.entries
+description: Return an iterator for the entries.
+info: |
+ 22.2.3.6 %TypedArray%.prototype.entries ( )
+
+ ...
+ 3. Return CreateArrayIterator(O, "key+value").
+includes: [testBigIntTypedArray.js, compareArray.js]
+features: [BigInt, TypedArray]
+---*/
+
+testWithBigIntTypedArrayConstructors(function(TA) {
+ var typedArray = new TA([0n, 42n, 64n]);
+ var itor = typedArray.entries();
+
+ var next = itor.next();
+ assert(compareArray(next.value, [0, 0n]));
+ assert.sameValue(next.done, false);
+
+ next = itor.next();
+ assert(compareArray(next.value, [1, 42n]));
+ assert.sameValue(next.done, false);
+
+ next = itor.next();
+ assert(compareArray(next.value, [2, 64n]));
+ assert.sameValue(next.done, false);
+
+ next = itor.next();
+ assert.sameValue(next.value, undefined);
+ assert.sameValue(next.done, true);
+});
+
+reportCompare(0, 0);