From 296657cd90023e89218016870bd972267b4cd33a Mon Sep 17 00:00:00 2001 From: Leo Balter Date: Thu, 15 Feb 2018 13:42:03 -0500 Subject: Fix missing BigInt usage in TypedArrays --- .../TypedArrays/prototype/Symbol.toStringTag/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/bigint-Symbol.iterator.js | 6 +++--- test/built-ins/TypedArrays/prototype/buffer/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/byteLength/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/byteOffset/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/copyWithin/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/entries/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/every/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/filter/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/find/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/findIndex/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/forEach/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/indexOf/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/join/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/keys/bigint-inherited.js | 6 +++--- .../built-ins/TypedArrays/prototype/lastIndexOf/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/length/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/map/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/reduce/bigint-inherited.js | 6 +++--- .../built-ins/TypedArrays/prototype/reduceRight/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/reverse/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/set/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/slice/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/some/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/sort/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/subarray/bigint-inherited.js | 6 +++--- .../TypedArrays/prototype/toLocaleString/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/toString/bigint-inherited.js | 6 +++--- test/built-ins/TypedArrays/prototype/values/bigint-inherited.js | 6 +++--- 30 files changed, 90 insertions(+), 90 deletions(-) diff --git a/test/built-ins/TypedArrays/prototype/Symbol.toStringTag/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/Symbol.toStringTag/bigint-inherited.js index e0372adb7..476af1cff 100644 --- a/test/built-ins/TypedArrays/prototype/Symbol.toStringTag/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/Symbol.toStringTag/bigint-inherited.js @@ -5,10 +5,10 @@ esid: sec-get-%typedarray%.prototype-@@tostringtag description: > _TypedArray_.prototype[@@toStringTag] is inherited from %TypedArray% _TypedArray_.prototype has no own property @@toStringTag -includes: [testTypedArray.js] -features: [Symbol.toStringTag, TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, Symbol.toStringTag, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty(Symbol.toStringTag), false); }); diff --git a/test/built-ins/TypedArrays/prototype/bigint-Symbol.iterator.js b/test/built-ins/TypedArrays/prototype/bigint-Symbol.iterator.js index 46590fe4d..149575d65 100644 --- a/test/built-ins/TypedArrays/prototype/bigint-Symbol.iterator.js +++ b/test/built-ins/TypedArrays/prototype/bigint-Symbol.iterator.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype-@@iterator description: > _TypedArray_.prototype has no own property @@iterator -includes: [testTypedArray.js] -features: [Symbol.iterator, TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, Symbol.iterator, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty(Symbol.iterator), false); }); diff --git a/test/built-ins/TypedArrays/prototype/buffer/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/buffer/bigint-inherited.js index 323b7476f..6fe2efdd5 100644 --- a/test/built-ins/TypedArrays/prototype/buffer/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/buffer/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-get-%typedarray%.prototype.buffer description: > _TypedArray_.prototype has no own property "buffer" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("buffer"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/byteLength/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/byteLength/bigint-inherited.js index 52b343265..a379f2a83 100644 --- a/test/built-ins/TypedArrays/prototype/byteLength/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/byteLength/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-get-%typedarray%.prototype.bytelength description: > _TypedArray_.prototype has no own property "byteLength" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("byteLength"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/byteOffset/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/byteOffset/bigint-inherited.js index 1d60311e0..c93aeab8c 100644 --- a/test/built-ins/TypedArrays/prototype/byteOffset/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/byteOffset/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-get-%typedarray%.prototype.byteoffset description: > _TypedArray_.prototype has no own property "byteOffset" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("byteOffset"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/copyWithin/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/copyWithin/bigint-inherited.js index db5105ac6..68d44622a 100644 --- a/test/built-ins/TypedArrays/prototype/copyWithin/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/copyWithin/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.copywithin description: > _TypedArray_.prototype has no own property "copyWithin" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("copyWithin"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/entries/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/entries/bigint-inherited.js index 8601bc268..03017f07c 100644 --- a/test/built-ins/TypedArrays/prototype/entries/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/entries/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.entries description: > _TypedArray_.prototype has no own property "entries" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("entries"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/every/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/every/bigint-inherited.js index 9b3da52bf..95c15ca63 100644 --- a/test/built-ins/TypedArrays/prototype/every/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/every/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.every description: > _TypedArray_.prototype has no own property "every" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("every"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js index b6862164e..82845b596 100644 --- a/test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.fill description: > _TypedArray_.prototype has no own property "fill" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("fill"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/filter/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/filter/bigint-inherited.js index 36d9019de..cbff2a5d6 100644 --- a/test/built-ins/TypedArrays/prototype/filter/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/filter/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.filter description: > _TypedArray_.prototype has no own property "filter" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("filter"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/find/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/find/bigint-inherited.js index 828c4f4c4..ac94cd801 100644 --- a/test/built-ins/TypedArrays/prototype/find/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/find/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.find description: > _TypedArray_.prototype has no own property "find" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("find"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/findIndex/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/findIndex/bigint-inherited.js index 63f6f2279..4a6277923 100644 --- a/test/built-ins/TypedArrays/prototype/findIndex/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/findIndex/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.findindex description: > _TypedArray_.prototype has no own property "findIndex" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("findIndex"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/forEach/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/forEach/bigint-inherited.js index de6e9371d..409132fb1 100644 --- a/test/built-ins/TypedArrays/prototype/forEach/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/forEach/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.foreach description: > _TypedArray_.prototype has no own property "forEach" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("forEach"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/indexOf/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/indexOf/bigint-inherited.js index 362ef22a9..7f403c3df 100644 --- a/test/built-ins/TypedArrays/prototype/indexOf/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/indexOf/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.indexof description: > _TypedArray_.prototype has no own property "indexOf" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("indexOf"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/join/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/join/bigint-inherited.js index cc649c89f..45e858aef 100644 --- a/test/built-ins/TypedArrays/prototype/join/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/join/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.join description: > _TypedArray_.prototype has no own property "join" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("join"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/keys/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/keys/bigint-inherited.js index f4c800c5e..6b25ac078 100644 --- a/test/built-ins/TypedArrays/prototype/keys/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/keys/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.keys description: > _TypedArray_.prototype has no own property "keys" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("keys"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/lastIndexOf/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/lastIndexOf/bigint-inherited.js index 5a68f3fa3..2a7dd2912 100644 --- a/test/built-ins/TypedArrays/prototype/lastIndexOf/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/lastIndexOf/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.lastindexof description: > _TypedArray_.prototype has no own property "lastIndexOf" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("lastIndexOf"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/length/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/length/bigint-inherited.js index b75ccb831..36244e7c5 100644 --- a/test/built-ins/TypedArrays/prototype/length/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/length/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-get-%typedarray%.prototype.length description: > _TypedArray_.prototype has no own property "length" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("length"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/map/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/map/bigint-inherited.js index 2d5d48aae..ace5d810d 100644 --- a/test/built-ins/TypedArrays/prototype/map/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/map/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.map description: > _TypedArray_.prototype has no own property "map" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("map"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/reduce/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/reduce/bigint-inherited.js index d01bda709..ac0a6b751 100644 --- a/test/built-ins/TypedArrays/prototype/reduce/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/reduce/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-get-%typedarray%.prototype.reduce description: > _TypedArray_.prototype has no own property "reduce" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("reduce"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/reduceRight/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/reduceRight/bigint-inherited.js index 784e4c2b7..64c043026 100644 --- a/test/built-ins/TypedArrays/prototype/reduceRight/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/reduceRight/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.reduceright description: > _TypedArray_.prototype has no own property "reduceRight" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("reduceRight"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/reverse/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/reverse/bigint-inherited.js index 7d8a7d6e2..b839ed245 100644 --- a/test/built-ins/TypedArrays/prototype/reverse/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/reverse/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.reverse description: > _TypedArray_.prototype has no own property "reverse" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("reverse"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/set/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/set/bigint-inherited.js index 411b66fda..722e58490 100644 --- a/test/built-ins/TypedArrays/prototype/set/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/set/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.set description: > _TypedArray_.prototype has no own property "set" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("set"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/slice/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/slice/bigint-inherited.js index a1ae44026..09ad236fe 100644 --- a/test/built-ins/TypedArrays/prototype/slice/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/slice/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.slice description: > _TypedArray_.prototype has no own property "slice" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("slice"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/some/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/some/bigint-inherited.js index 4b75f87f2..5dcd257a3 100644 --- a/test/built-ins/TypedArrays/prototype/some/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/some/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.some description: > _TypedArray_.prototype has no own property "some" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("some"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/sort/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/sort/bigint-inherited.js index 37aab5255..57d26122a 100644 --- a/test/built-ins/TypedArrays/prototype/sort/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/sort/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.sort description: > _TypedArray_.prototype has no own property "sort" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("sort"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/subarray/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/subarray/bigint-inherited.js index 2416208a3..53901a6cb 100644 --- a/test/built-ins/TypedArrays/prototype/subarray/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/subarray/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.subarray description: > _TypedArray_.prototype has no own property "subarray" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("subarray"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/toLocaleString/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/toLocaleString/bigint-inherited.js index d4a48e25d..b2b742d24 100644 --- a/test/built-ins/TypedArrays/prototype/toLocaleString/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/toLocaleString/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.tolocalestring description: > _TypedArray_.prototype has no own property "toLocaleString" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("toLocaleString"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/toString/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/toString/bigint-inherited.js index 9f1b0e217..5a2319fd8 100644 --- a/test/built-ins/TypedArrays/prototype/toString/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/toString/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.tostring description: > _TypedArray_.prototype has no own property "toString" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("toString"), false); }); diff --git a/test/built-ins/TypedArrays/prototype/values/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/values/bigint-inherited.js index bd4aaec70..65b5bbf7e 100644 --- a/test/built-ins/TypedArrays/prototype/values/bigint-inherited.js +++ b/test/built-ins/TypedArrays/prototype/values/bigint-inherited.js @@ -4,10 +4,10 @@ esid: sec-%typedarray%.prototype.values description: > _TypedArray_.prototype has no own property "values" -includes: [testTypedArray.js] -features: [TypedArray] +includes: [testBigIntTypedArray.js] +features: [BigInt, TypedArray] ---*/ -testWithTypedArrayConstructors(function(TA) { +testWithBigIntTypedArrayConstructors(function(TA) { assert.sameValue(TA.prototype.hasOwnProperty("values"), false); }); -- cgit v1.2.1