blob: 256116f343a9d676d3d35ba8266791378dcaae57 [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
esid: sec-properties-of-the-typedarray-constructors
description: >
The prototype of Int32Array 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(Int32Array), TypedArray);