summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/fill/BigInt/fill-values-conversion-once.js
blob: 2f8bfa00861c54b056e413ab3de5933195e5cfd8 (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
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.fill
description: >
  Fills all the elements with non numeric values values.
info: |
  22.2.3.8 %TypedArray%.prototype.fill (value [ , start [ , end ] ] )

  ...
  3. Let _value_ be ? ToNumber(_value_).
  ...
includes: [testBigIntTypedArray.js]
features: [BigInt, TypedArray]
---*/

testWithBigIntTypedArrayConstructors(function(TA) {
  var sample = new TA(2);

  var n = 1;
  sample.fill({ valueOf() { return convertToBigInt(n++); } });

  assert.sameValue(n, 2, "additional unexpected ToNumber() calls");
  assert.sameValue(sample[0], 1n, "incorrect ToNumber result in index 0");
  assert.sameValue(sample[1], 1n, "incorrect ToNumber result in index 1");
});