summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/entries/BigInt/return-itor.js
blob: 015595422bd2d8c9c2d97921cd54650268efc69d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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]
---*/

var sample = [0, 42, 64];

testWithBigIntTypedArrayConstructors(function(TA) {
  var typedArray = new TA(convertToBigInt(sample));
  var itor = typedArray.entries();

  var next = itor.next();
  assert(compareArray(next.value, [0, convertToBigInt(0)]));
  assert.sameValue(next.done, false);

  next = itor.next();
  assert(compareArray(next.value, [1, convertToBigInt(42)]));
  assert.sameValue(next.done, false);

  next = itor.next();
  assert(compareArray(next.value, [2, convertToBigInt(64)]));
  assert.sameValue(next.done, false);

  next = itor.next();
  assert.sameValue(next.value, undefined);
  assert.sameValue(next.done, true);
});