summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArrayConstructors/BigInt64Array/prototype.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/TypedArrayConstructors/BigInt64Array/prototype.js')
-rw-r--r--js/src/tests/test262/built-ins/TypedArrayConstructors/BigInt64Array/prototype.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/TypedArrayConstructors/BigInt64Array/prototype.js b/js/src/tests/test262/built-ins/TypedArrayConstructors/BigInt64Array/prototype.js
new file mode 100644
index 0000000000..41a7afcb84
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArrayConstructors/BigInt64Array/prototype.js
@@ -0,0 +1,26 @@
+// Copyright (C) 2017 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-typedarray.prototype
+description: BigInt64Array.prototype property descriptor
+info: |
+ 22.2.5.2 TypedArray.prototype
+
+ The initial value of TypedArray.prototype is the corresponding
+ TypedArray prototype intrinsic object (22.2.6).
+
+ This property has the attributes { [[Writable]]: false,
+ [[Enumerable]]: false, [[Configurable]]: false }.
+includes: [propertyHelper.js]
+features: [BigInt]
+---*/
+
+verifyProperty(BigInt64Array, "prototype", {
+ value: Object.getPrototypeOf(new BigInt64Array()),
+ writable: false,
+ enumerable: false,
+ configurable: false
+});
+
+reportCompare(0, 0);