blob: 0e1708358f5bfef005f511197c181ff9b0d6cdf7 [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
description: BigUint64Array.prototype property descriptor
info: |
22.2.5.2 TypedArray.prototype
The initial value of TypedArray.prototype is the corresponding
TypedArray prototype intrinsic object (22.2.6).
This property has the attributes { [[Writable]]: false,
[[Enumerable]]: false, [[Configurable]]: false }.
includes: [propertyHelper.js]
features: [BigInt]
---*/
verifyProperty(BigUint64Array, "prototype", {
value: Object.getPrototypeOf(new BigUint64Array()),
writable: false,
enumerable: false,
configurable: false
});