summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/prototype/reverse/BigInt/reverts.js
blob: 00e13a2bafb2c2aeb14c5367a17445685ca113af (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
52
53
54
55
56
57
58
59
// 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.reverse
description: Reverts values
info: |
  22.2.3.22 %TypedArray%.prototype.reverse ( )

  %TypedArray%.prototype.reverse is a distinct function that implements the same
  algorithm as Array.prototype.reverse as defined in 22.1.3.21 except that the
  this object's [[ArrayLength]] internal slot is accessed in place of performing
  a [[Get]] of "length".

  22.1.3.21 Array.prototype.reverse ( )

  ...
  6. Return O.
includes: [testBigIntTypedArray.js, compareArray.js]
features: [BigInt, TypedArray]
---*/

var buffer = new ArrayBuffer(64);

testWithBigIntTypedArrayConstructors(function(TA) {
  var sample = new TA(buffer, 0, 4);
  var other = new TA(buffer, 0, 5);

  sample[0] = 42n;
  sample[1] = 43n;
  sample[2] = 2n;
  sample[3] = 1n;
  other[4] = 7n;

  sample.reverse();
  assert(
    compareArray(sample, [1n, 2n, 43n, 42n])
  );

  assert(
    compareArray(other, [1n, 2n, 43n, 42n, 7n])
  );

  sample[0] = 7n;
  sample[1] = 17n;
  sample[2] = 1n;
  sample[3] = 0n;
  other[4] = 42n;

  other.reverse();
  assert(
    compareArray(other, [42n, 0n, 1n, 17n, 7n])
  );

  assert(
    compareArray(sample, [42n, 0n, 1n, 17n])
  );
});

reportCompare(0, 0);