summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/BigInt64Array/proto.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/BigInt64Array/proto.js')
-rw-r--r--test/built-ins/TypedArrays/BigInt64Array/proto.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/built-ins/TypedArrays/BigInt64Array/proto.js b/test/built-ins/TypedArrays/BigInt64Array/proto.js
new file mode 100644
index 000000000..2201e30ee
--- /dev/null
+++ b/test/built-ins/TypedArrays/BigInt64Array/proto.js
@@ -0,0 +1,16 @@
+// Copyright (C) 2017 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-properties-of-the-typedarray-constructors
+description: BigInt64Array prototype internal slot
+info: >
+ 22.2.5 Properties of the TypedArray Constructors
+
+ The value of the [[Prototype]] internal slot of each TypedArray
+ constructor is the %TypedArray% intrinsic object.
+includes: [testTypedArray.js]
+features: [BigInt, TypedArray]
+---*/
+
+assert.sameValue(Object.getPrototypeOf(BigInt64Array), TypedArray);