summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/Symbol.species
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /js/src/tests/test262/built-ins/TypedArray/Symbol.species
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/built-ins/TypedArray/Symbol.species')
-rw-r--r--js/src/tests/test262/built-ins/TypedArray/Symbol.species/browser.js0
-rw-r--r--js/src/tests/test262/built-ins/TypedArray/Symbol.species/length.js34
-rw-r--r--js/src/tests/test262/built-ins/TypedArray/Symbol.species/name.js31
-rw-r--r--js/src/tests/test262/built-ins/TypedArray/Symbol.species/prop-desc.js21
-rw-r--r--js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js20
-rw-r--r--js/src/tests/test262/built-ins/TypedArray/Symbol.species/shell.js0
6 files changed, 106 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/TypedArray/Symbol.species/browser.js b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/browser.js
diff --git a/js/src/tests/test262/built-ins/TypedArray/Symbol.species/length.js b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/length.js
new file mode 100644
index 0000000000..8efd820740
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/length.js
@@ -0,0 +1,34 @@
+// Copyright (C) 2015 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es6id: 22.2.2.4
+description: >
+ get %TypedArray% [ @@species ].length is 0.
+info: |
+ get %TypedArray% [ @@species ]
+
+ 17 ECMAScript Standard Built-in Objects:
+ Every built-in Function object, including constructors, has a length
+ property whose value is an integer. Unless otherwise specified, this
+ value is equal to the largest number of named arguments shown in the
+ subclause headings for the function description, including optional
+ parameters. However, rest parameters shown using the form “...name”
+ are not included in the default argument count.
+
+ Unless otherwise specified, the length property of a built-in Function
+ object has the attributes { [[Writable]]: false, [[Enumerable]]: false,
+ [[Configurable]]: true }.
+includes: [propertyHelper.js, testTypedArray.js]
+features: [Symbol.species]
+---*/
+
+var desc = Object.getOwnPropertyDescriptor(TypedArray, Symbol.species);
+
+assert.sameValue(desc.get.length, 0);
+
+verifyNotEnumerable(desc.get, "length");
+verifyNotWritable(desc.get, "length");
+verifyConfigurable(desc.get, "length");
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/TypedArray/Symbol.species/name.js b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/name.js
new file mode 100644
index 0000000000..8747ac6130
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/name.js
@@ -0,0 +1,31 @@
+// Copyright (C) 2015 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es6id: 22.2.2.4
+description: >
+ get %TypedArray% [ @@species ].name is "get [Symbol.species]".
+info: |
+ get %TypedArray% [ @@species ]
+
+ 17 ECMAScript Standard Built-in Objects:
+ Every built-in Function object, including constructors, that is not
+ identified as an anonymous function has a name property whose value
+ is a String.
+
+ Unless otherwise specified, the name property of a built-in Function
+ object, if it exists, has the attributes { [[Writable]]: false,
+ [[Enumerable]]: false, [[Configurable]]: true }.
+includes: [propertyHelper.js, testTypedArray.js]
+features: [Symbol.species]
+---*/
+
+var desc = Object.getOwnPropertyDescriptor(TypedArray, Symbol.species);
+
+assert.sameValue(desc.get.name, "get [Symbol.species]");
+
+verifyNotEnumerable(desc.get, "name");
+verifyNotWritable(desc.get, "name");
+verifyConfigurable(desc.get, "name");
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/TypedArray/Symbol.species/prop-desc.js b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/prop-desc.js
new file mode 100644
index 0000000000..5a97e8f5e1
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/prop-desc.js
@@ -0,0 +1,21 @@
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+es6id: 22.2.2.4
+description: >
+ @@species property of TypedArray
+info: |
+ 22.2.2.4 get %TypedArray% [ @@species ]
+
+ %TypedArray%[@@species] is an accessor property whose set accessor function
+ is undefined.
+includes: [testTypedArray.js]
+features: [Symbol.species, TypedArray]
+---*/
+
+var desc = Object.getOwnPropertyDescriptor(TypedArray, Symbol.species);
+
+assert.sameValue(desc.set, undefined);
+assert.sameValue(typeof desc.get, 'function');
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js
new file mode 100644
index 0000000000..3b79165925
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/result.js
@@ -0,0 +1,20 @@
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+es6id: 22.2.2.4
+description: >
+ @@species property returns the `this` value
+info: |
+ 22.2.2.4 get %TypedArray% [ @@species ]
+
+ 1. Return the this value.
+includes: [testTypedArray.js]
+features: [Symbol.species, TypedArray]
+---*/
+
+var value = {};
+var getter = Object.getOwnPropertyDescriptor(TypedArray, Symbol.species).get;
+
+assert.sameValue(getter.call(value), value);
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/TypedArray/Symbol.species/shell.js b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/TypedArray/Symbol.species/shell.js