summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/BigInt64Array/constructor.js
blob: aa514f539603427f08c80b6065bfeae36b472446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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");