blob: c0df40d4b27216c0581af508e88611f2cfe1123e [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-properties-of-the-typedarray-constructors
description: >
The prototype of Float32Array is %TypedArray%.
info: |
The value of the [[Prototype]] internal slot of each TypedArray constructor is the %TypedArray% intrinsic object (22.2.1).
includes: [testTypedArray.js]
features: [TypedArray]
---*/
assert.sameValue(Object.getPrototypeOf(Float32Array), TypedArray);