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