blob: e6a8eefd9901c5bc563e94cf7da5a9f39a5cf0a1 [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 Float64Array 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(Float64Array), TypedArray);