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

/*---
esid: sec-properties-of-the-typedarray-constructors
description: BigInt64Array prototype internal slot
info: |
  22.2.5 Properties of the TypedArray Constructors

  The value of the [[Prototype]] internal slot of each TypedArray
  constructor is the %TypedArray% intrinsic object.
includes: [testTypedArray.js]
features: [BigInt, TypedArray]
---*/

assert.sameValue(Object.getPrototypeOf(BigInt64Array), TypedArray);

reportCompare(0, 0);