blob: 30c2589f7772ed5a69bacd6b887d26fa3bcd0935 [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.6
esid: sec-properties-of-typedarray-prototype-objects
description: >
The prototype of Uint32Array.prototype is %TypedArrayPrototype%.
info: |
The value of the [[Prototype]] internal slot of a TypedArray prototype
object is the intrinsic object %TypedArrayPrototype% (22.2.3).
includes: [testTypedArray.js]
features: [TypedArray]
---*/
assert.sameValue(Object.getPrototypeOf(Uint32Array.prototype), TypedArray.prototype);