blob: b48746b537f29542d3eada84a6519be24184a6da [file] [log] [blame]
// 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);