summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/prototype/toSpliced/length.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/non262/Tuple/prototype/toSpliced/length.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/js/src/tests/non262/Tuple/prototype/toSpliced/length.js b/js/src/tests/non262/Tuple/prototype/toSpliced/length.js
new file mode 100644
index 0000000000..a95d957533
--- /dev/null
+++ b/js/src/tests/non262/Tuple/prototype/toSpliced/length.js
@@ -0,0 +1,27 @@
+// |reftest| skip-if(!this.hasOwnProperty("Tuple"))
+var desc = Object.getOwnPropertyDescriptor(Tuple.prototype.toSpliced, "length");
+assertEq(desc.value, 2);
+assertEq(desc.writable, false);
+assertEq(desc.enumerable, false);
+assertEq(desc.configurable, true);
+
+
+desc = Object.getOwnPropertyDescriptor(Tuple.prototype.toSpliced, "name");
+assertEq(desc.value, "toSpliced");
+assertEq(desc.writable, false);
+assertEq(desc.enumerable, false);
+assertEq(desc.configurable, true);
+
+desc = Object.getOwnPropertyDescriptor(Tuple.prototype, "toSpliced");
+assertEq(desc.writable, true);
+assertEq(desc.enumerable, false);
+assertEq(desc.configurable, true);
+
+assertEq(isConstructor(Tuple.prototype.toSpliced), false);
+
+assertThrowsInstanceOf(() => {
+ let t = #[1];
+ new t.toSpliced();
+}, TypeError, '`let t = #[1]; new t.toSpliced()` throws TypeError');
+
+reportCompare(0, 0);