blob: 0945dcf60867212325f75bc78e739e46c60d33c2 [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 Uint16Array 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(Uint16Array), TypedArray);