summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/prototype/set/BigInt/array-arg-primitive-toobject.js
blob: d2fe88d0d2b582ea74380b6ad9c971b35d4af880 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.set-array-offset
description: >
  Primitive `array` argument is coerced to an object.
info: |
  %TypedArray%.prototype.set ( typedArray [ , offset ] )

  1. Assert: array is any ECMAScript language value other than an Object
  with a [[TypedArrayName]] internal slot. If it is such an Object,
  the definition in 22.2.3.23.2 applies.
  [...]
  14. Let src be ? ToObject(array).
  15. Let srcLength be ? LengthOfArrayLike(src).
  [...]
  19. Let limit be targetByteIndex + targetElementSize × srcLength.
  20. Repeat, while targetByteIndex < limit,
    a. Let Pk be ! ToString(k).
    b. Let value be ? Get(src, Pk).
    c. If target.[[ContentType]] is BigInt, set value to ? ToBigInt(value).
    [...]
    f. Perform SetValueInBuffer(targetBuffer, targetByteIndex, targetType, value, true, Unordered).
    [...]
includes: [testBigIntTypedArray.js, compareArray.js]
features: [BigInt, TypedArray, Symbol]
---*/

testWithBigIntTypedArrayConstructors(function(TA) {
  var ta1 = new TA([1n, 2n, 3n, 4n]);
  ta1.set("567");
  assert.compareArray(ta1, [5n, 6n, 7n, 4n], "string");

  var ta2 = new TA([1n, 2n, 3n]);
  ta2.set(-10, 2);
  assert.compareArray(ta2, [1n, 2n, 3n], "number");

  var ta3 = new TA([1n]);
  ta3.set(false);
  assert.compareArray(ta3, [1n], "boolean");

  var ta4 = new TA([1n, 2n]);
  ta4.set(Symbol("desc"), 0);
  assert.compareArray(ta4, [1n, 2n], "symbol");

  var ta5 = new TA([1n, 2n]);
  ta5.set(4n, 1);
  assert.compareArray(ta5, [1n, 2n], "bigint");
});

reportCompare(0, 0);