summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/toLocaleString/BigInt
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/toLocaleString/BigInt')
-rw-r--r--test/built-ins/TypedArray/prototype/toLocaleString/BigInt/empty-instance-returns-empty-string.js4
-rw-r--r--test/built-ins/TypedArray/prototype/toLocaleString/BigInt/get-length-uses-internal-arraylength.js4
-rw-r--r--test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-firstelement-tolocalestring.js4
-rw-r--r--test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-nextelement-tolocalestring.js4
-rw-r--r--test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-result.js4
5 files changed, 10 insertions, 10 deletions
diff --git a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/empty-instance-returns-empty-string.js b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/empty-instance-returns-empty-string.js
index e933bce82..6dc34b08d 100644
--- a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/empty-instance-returns-empty-string.js
+++ b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/empty-instance-returns-empty-string.js
@@ -10,9 +10,9 @@ info: |
the same algorithm as Array.prototype.toLocaleString as defined in 22.1.3.27
except that the this object's [[ArrayLength]] internal slot is accessed in
place of performing a [[Get]] of "length".
-
+
22.1.3.27 Array.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] )
-
+
...
4. If len is zero, return the empty String.
...
diff --git a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/get-length-uses-internal-arraylength.js b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/get-length-uses-internal-arraylength.js
index 688cfb239..bca3f6e76 100644
--- a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/get-length-uses-internal-arraylength.js
+++ b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/get-length-uses-internal-arraylength.js
@@ -10,9 +10,9 @@ info: |
the same algorithm as Array.prototype.toLocaleString as defined in 22.1.3.27
except that the this object's [[ArrayLength]] internal slot is accessed in
place of performing a [[Get]] of "length".
-
+
22.1.3.27 Array.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] )
-
+
1. Let array be ? ToObject(this value).
2.Let len be ? ToLength(? Get(array, "length")).
...
diff --git a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-firstelement-tolocalestring.js b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-firstelement-tolocalestring.js
index e018468cc..a0927933e 100644
--- a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-firstelement-tolocalestring.js
+++ b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-firstelement-tolocalestring.js
@@ -10,9 +10,9 @@ info: |
the same algorithm as Array.prototype.toLocaleString as defined in 22.1.3.27
except that the this object's [[ArrayLength]] internal slot is accessed in
place of performing a [[Get]] of "length".
-
+
22.1.3.27 Array.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] )
-
+
...
4. If len is zero, return the empty String.
5. Let firstElement be ? Get(array, "0").
diff --git a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-nextelement-tolocalestring.js b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-nextelement-tolocalestring.js
index 987146990..4cab0e288 100644
--- a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-nextelement-tolocalestring.js
+++ b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-abrupt-from-nextelement-tolocalestring.js
@@ -10,9 +10,9 @@ info: |
the same algorithm as Array.prototype.toLocaleString as defined in 22.1.3.27
except that the this object's [[ArrayLength]] internal slot is accessed in
place of performing a [[Get]] of "length".
-
+
22.1.3.27 Array.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] )
-
+
...
9.Repeat, while k < len
a. Let S be a String value produced by concatenating R and separator.
diff --git a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-result.js b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-result.js
index 99772306f..0e2a439c3 100644
--- a/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-result.js
+++ b/test/built-ins/TypedArray/prototype/toLocaleString/BigInt/return-result.js
@@ -10,9 +10,9 @@ info: |
the same algorithm as Array.prototype.toLocaleString as defined in 22.1.3.27
except that the this object's [[ArrayLength]] internal slot is accessed in
place of performing a [[Get]] of "length".
-
+
22.1.3.27 Array.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] )
-
+
...
5. Let firstElement be ? Get(array, "0").
6. If firstElement is undefined or null, then