blob: d46f2a9ae9500b0c3f51c66ab47d7b55af50dfa1 [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-typedarray.prototype.constructor
description: BigInt64Array.prototype.constructor property descriptor
info: |
22.2.6.2 TypedArray.prototype.constructor
The initial value of a TypedArray.prototype.constructor is the
corresponding %TypedArray% intrinsic object.
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [BigInt]
---*/
verifyProperty(BigInt64Array.prototype, "constructor", {
value: BigInt64Array,
writable: true,
enumerable: false,
configurable: true
});