summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArrayConstructors/BigInt64Array/constructor.js
blob: 940076e1239efdc1712b758659e66856e8042000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2017 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-typedarray-constructors
description: BigInt64Array is a constructor function
info: |
  22.2.4 The TypedArray Constructors

  [...]

  The TypedArray intrinsic constructor functions are single functions
  whose behaviour is overloaded based upon the number and types of its
  arguments. The actual behaviour of a call of TypedArray depends upon
  the number and kind of arguments that are passed to it.
features: [BigInt]
---*/

assert.sameValue(typeof BigInt64Array, "function");

reportCompare(0, 0);