blob: 69b5a84d5adf82eb8d5c62722f527c8f51e98693 [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 Int16Array.prototype is the Int16Array 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(Int16Array.prototype, Object.getPrototypeOf(new Int16Array(0)));
verifyNotEnumerable(Int16Array, "prototype");
verifyNotWritable(Int16Array, "prototype");
verifyNotConfigurable(Int16Array, "prototype");