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