blob: 48307c393db434b118fd92303575bb6e3c069309 [file] [log] [blame]
// 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.values
description: Return an iterator for the values.
info: |
22.2.3.30 %TypedArray%.prototype.values ( )
...
3. Return CreateArrayIterator(O, "value").
includes: [testBigIntTypedArray.js]
features: [BigInt, TypedArray]
---*/
testWithBigIntTypedArrayConstructors(function(TA) {
var typedArray = new TA([0n, 42n, 64n]);
var itor = typedArray.values();
var next = itor.next();
assert.sameValue(next.value, 0n);
assert.sameValue(next.done, false);
next = itor.next();
assert.sameValue(next.value, 42n);
assert.sameValue(next.done, false);
next = itor.next();
assert.sameValue(next.value, 64n);
assert.sameValue(next.done, false);
next = itor.next();
assert.sameValue(next.value, undefined);
assert.sameValue(next.done, true);
});