blob: 585b65201a5d1242cb06860d28dc2d12cdf5d06c [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 Uint32Array 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(Uint32Array), TypedArray);