blob: 3f2329dcb08a550b05835d26b159bc348c34ade6 [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-typedarray.prototype
description: >
The initial value of Uint16Array.prototype is the Uint16Array prototype object.
info: |
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: [TypedArray]
---*/
assert.sameValue(Uint16Array.prototype, Object.getPrototypeOf(new Uint16Array(0)));
verifyNotEnumerable(Uint16Array, "prototype");
verifyNotWritable(Uint16Array, "prototype");
verifyNotConfigurable(Uint16Array, "prototype");