diff --git a/test/built-ins/Map/constructor.js b/test/built-ins/Map/constructor.js index 18194c10fe2..3e4a6f95109 100644 --- a/test/built-ins/Map/constructor.js +++ b/test/built-ins/Map/constructor.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1 +esid: sec-map-constructor description: > The Map constructor is the %Map% intrinsic object and the initial value of the Map property of the global object. diff --git a/test/built-ins/Map/does-not-throw-when-set-is-not-callable.js b/test/built-ins/Map/does-not-throw-when-set-is-not-callable.js index 3552d47ee2e..9fdf19d6286 100644 --- a/test/built-ins/Map/does-not-throw-when-set-is-not-callable.js +++ b/test/built-ins/Map/does-not-throw-when-set-is-not-callable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Creating a new Map object without arguments doesn't throw if `set` is not callable diff --git a/test/built-ins/Map/get-set-method-failure.js b/test/built-ins/Map/get-set-method-failure.js index 6a94f82750b..2badd8e6068 100644 --- a/test/built-ins/Map/get-set-method-failure.js +++ b/test/built-ins/Map/get-set-method-failure.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > new Map returns abrupt from getting Map.prototype.set. info: | diff --git a/test/built-ins/Map/iterable-calls-set.js b/test/built-ins/Map/iterable-calls-set.js index 6da60e98844..55d160b812a 100644 --- a/test/built-ins/Map/iterable-calls-set.js +++ b/test/built-ins/Map/iterable-calls-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > new Map calls `set` for each item on the iterable argument in order. info: | diff --git a/test/built-ins/Map/iterator-close-after-set-failure.js b/test/built-ins/Map/iterator-close-after-set-failure.js index 321c0a729fa..804c6b4f49f 100644 --- a/test/built-ins/Map/iterator-close-after-set-failure.js +++ b/test/built-ins/Map/iterator-close-after-set-failure.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > The iterator is closed when `Map.prototype.set` throws an error. info: | diff --git a/test/built-ins/Map/iterator-item-first-entry-returns-abrupt.js b/test/built-ins/Map/iterator-item-first-entry-returns-abrupt.js index 555ec64be77..acb8880c548 100644 --- a/test/built-ins/Map/iterator-item-first-entry-returns-abrupt.js +++ b/test/built-ins/Map/iterator-item-first-entry-returns-abrupt.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Closes iterator if item first entry completes abruptly. info: | diff --git a/test/built-ins/Map/iterator-item-second-entry-returns-abrupt.js b/test/built-ins/Map/iterator-item-second-entry-returns-abrupt.js index 5211652754f..c9835d691d5 100644 --- a/test/built-ins/Map/iterator-item-second-entry-returns-abrupt.js +++ b/test/built-ins/Map/iterator-item-second-entry-returns-abrupt.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Closes iterator if item second entry completes abruptly. info: | diff --git a/test/built-ins/Map/iterator-items-are-not-object-close-iterator.js b/test/built-ins/Map/iterator-items-are-not-object-close-iterator.js index 8c9bc4fe89c..fd03b21aa40 100644 --- a/test/built-ins/Map/iterator-items-are-not-object-close-iterator.js +++ b/test/built-ins/Map/iterator-items-are-not-object-close-iterator.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Closes the iterator after `not Object` error. info: | diff --git a/test/built-ins/Map/iterator-items-are-not-object.js b/test/built-ins/Map/iterator-items-are-not-object.js index 958efd1d39c..cc61b8f739e 100644 --- a/test/built-ins/Map/iterator-items-are-not-object.js +++ b/test/built-ins/Map/iterator-items-are-not-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Throws a TypeError if iterable items are not Objects. info: | diff --git a/test/built-ins/Map/iterator-next-failure.js b/test/built-ins/Map/iterator-next-failure.js index 37878ce2a5d..186985f8e0c 100644 --- a/test/built-ins/Map/iterator-next-failure.js +++ b/test/built-ins/Map/iterator-next-failure.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > The iterator is closed when iterable `next` throws an error. info: | diff --git a/test/built-ins/Map/iterator-value-failure.js b/test/built-ins/Map/iterator-value-failure.js index d4148ae94cb..dbc22f764e3 100644 --- a/test/built-ins/Map/iterator-value-failure.js +++ b/test/built-ins/Map/iterator-value-failure.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > The iterator is closed when iterable `next` value throws an error. info: | diff --git a/test/built-ins/Map/map-iterable-empty-does-not-call-set.js b/test/built-ins/Map/map-iterable-empty-does-not-call-set.js index a33d0cdf3ab..b4bb92e1b7d 100644 --- a/test/built-ins/Map/map-iterable-empty-does-not-call-set.js +++ b/test/built-ins/Map/map-iterable-empty-does-not-call-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > A Map constructed with an empty iterable argument does not call set. info: | diff --git a/test/built-ins/Map/map-iterable-throws-when-set-is-not-callable.js b/test/built-ins/Map/map-iterable-throws-when-set-is-not-callable.js index 89fc9ce3ca1..48b5382ecc0 100644 --- a/test/built-ins/Map/map-iterable-throws-when-set-is-not-callable.js +++ b/test/built-ins/Map/map-iterable-throws-when-set-is-not-callable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Throws a TypeError if `set` is not callable on Map constructor with a iterable argument. diff --git a/test/built-ins/Map/map-iterable.js b/test/built-ins/Map/map-iterable.js index e46330ead8a..d1f5960e9e5 100644 --- a/test/built-ins/Map/map-iterable.js +++ b/test/built-ins/Map/map-iterable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Contructor returns a map object set with the elements from the iterable argument. diff --git a/test/built-ins/Map/map-no-iterable-does-not-call-set.js b/test/built-ins/Map/map-no-iterable-does-not-call-set.js index bc0a7f718a6..04fcdffc3bc 100644 --- a/test/built-ins/Map/map-no-iterable-does-not-call-set.js +++ b/test/built-ins/Map/map-no-iterable-does-not-call-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > A Map constructed without a iterable argument does not call set. info: | diff --git a/test/built-ins/Map/map-no-iterable.js b/test/built-ins/Map/map-no-iterable.js index cb3f6a02358..2daa78475bb 100644 --- a/test/built-ins/Map/map-no-iterable.js +++ b/test/built-ins/Map/map-no-iterable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Returns the new Map object with the new empty list if the iterable argument is undefined. diff --git a/test/built-ins/Map/map.js b/test/built-ins/Map/map.js index ed5cac0a0d5..5c0fc7625bd 100644 --- a/test/built-ins/Map/map.js +++ b/test/built-ins/Map/map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Map descriptor as a standard built-in object. info: | diff --git a/test/built-ins/Map/name.js b/test/built-ins/Map/name.js index a591baa7ec4..d966ca8fd11 100644 --- a/test/built-ins/Map/name.js +++ b/test/built-ins/Map/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: Map.name value and descriptor. info: | Map ( [ iterable ] ) diff --git a/test/built-ins/Map/newtarget.js b/test/built-ins/Map/newtarget.js index 0206d23b14f..6515e6630d2 100644 --- a/test/built-ins/Map/newtarget.js +++ b/test/built-ins/Map/newtarget.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > The new Map object's prototype is Map.prototype info: | diff --git a/test/built-ins/Map/prototype/Symbol.iterator.js b/test/built-ins/Map/prototype/Symbol.iterator.js index 33efbc84340..a09060c7ce9 100644 --- a/test/built-ins/Map/prototype/Symbol.iterator.js +++ b/test/built-ins/Map/prototype/Symbol.iterator.js @@ -1,7 +1,7 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.12 +esid: sec-map.prototype-@@iterator description: Initial state of the Symbol.iterator property info: | The initial value of the @@iterator property is the same function object as diff --git a/test/built-ins/Map/prototype/Symbol.toStringTag.js b/test/built-ins/Map/prototype/Symbol.toStringTag.js index cad5b9949dc..990bc400e19 100644 --- a/test/built-ins/Map/prototype/Symbol.toStringTag.js +++ b/test/built-ins/Map/prototype/Symbol.toStringTag.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.13 +esid: sec-map.prototype-@@tostringtag description: > `Symbol.toStringTag` property descriptor info: | diff --git a/test/built-ins/Map/prototype/clear/clear-map.js b/test/built-ins/Map/prototype/clear/clear-map.js index e5341fbdd3a..f8c66345b70 100644 --- a/test/built-ins/Map/prototype/clear/clear-map.js +++ b/test/built-ins/Map/prototype/clear/clear-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > Clears a Map. info: | diff --git a/test/built-ins/Map/prototype/clear/clear.js b/test/built-ins/Map/prototype/clear/clear.js index 80fe0ac7861..289398f890e 100644 --- a/test/built-ins/Map/prototype/clear/clear.js +++ b/test/built-ins/Map/prototype/clear/clear.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > Map.prototype.clear ( ) diff --git a/test/built-ins/Map/prototype/clear/context-is-not-map-object.js b/test/built-ins/Map/prototype/clear/context-is-not-map-object.js index 9551f31c6c5..a1c0e747a39 100644 --- a/test/built-ins/Map/prototype/clear/context-is-not-map-object.js +++ b/test/built-ins/Map/prototype/clear/context-is-not-map-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > Throws a TypeError if `this` does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/clear/context-is-not-object.js b/test/built-ins/Map/prototype/clear/context-is-not-object.js index 9195e4a6897..c580315a873 100644 --- a/test/built-ins/Map/prototype/clear/context-is-not-object.js +++ b/test/built-ins/Map/prototype/clear/context-is-not-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/clear/context-is-set-object-throws.js b/test/built-ins/Map/prototype/clear/context-is-set-object-throws.js index 646212c736d..32c53c463f0 100644 --- a/test/built-ins/Map/prototype/clear/context-is-set-object-throws.js +++ b/test/built-ins/Map/prototype/clear/context-is-set-object-throws.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > Throws a TypeError if `this` is a Set object. info: | diff --git a/test/built-ins/Map/prototype/clear/context-is-weakmap-object-throws.js b/test/built-ins/Map/prototype/clear/context-is-weakmap-object-throws.js index 8e9deef09d1..404d1319d29 100644 --- a/test/built-ins/Map/prototype/clear/context-is-weakmap-object-throws.js +++ b/test/built-ins/Map/prototype/clear/context-is-weakmap-object-throws.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/clear/length.js b/test/built-ins/Map/prototype/clear/length.js index ca9047e0c68..c23d92afcb7 100644 --- a/test/built-ins/Map/prototype/clear/length.js +++ b/test/built-ins/Map/prototype/clear/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > Map.prototype.clear.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/clear/map-data-list-is-preserved.js b/test/built-ins/Map/prototype/clear/map-data-list-is-preserved.js index e83b87d5cd9..90d1f5b582a 100644 --- a/test/built-ins/Map/prototype/clear/map-data-list-is-preserved.js +++ b/test/built-ins/Map/prototype/clear/map-data-list-is-preserved.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > The existing [[MapData]] List is preserved. info: | diff --git a/test/built-ins/Map/prototype/clear/name.js b/test/built-ins/Map/prototype/clear/name.js index 88e95dc5abc..2c85af18f0a 100644 --- a/test/built-ins/Map/prototype/clear/name.js +++ b/test/built-ins/Map/prototype/clear/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > Map.prototype.entries.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/clear/returns-undefined.js b/test/built-ins/Map/prototype/clear/returns-undefined.js index ce4cfcff21d..2840abba6c3 100644 --- a/test/built-ins/Map/prototype/clear/returns-undefined.js +++ b/test/built-ins/Map/prototype/clear/returns-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.1 +esid: sec-map.prototype.clear description: > Returns undefined. info: | diff --git a/test/built-ins/Map/prototype/constructor.js b/test/built-ins/Map/prototype/constructor.js index 0db1b42c743..2a512bd6c12 100644 --- a/test/built-ins/Map/prototype/constructor.js +++ b/test/built-ins/Map/prototype/constructor.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.2 +esid: sec-map-constructor description: Map.prototype.constructor value and descriptor info: | The initial value of Map.prototype.constructor is the intrinsic object %Map%. diff --git a/test/built-ins/Map/prototype/delete/context-is-not-map-object.js b/test/built-ins/Map/prototype/delete/context-is-not-map-object.js index 8514a8441cb..ea6f9b465f4 100644 --- a/test/built-ins/Map/prototype/delete/context-is-not-map-object.js +++ b/test/built-ins/Map/prototype/delete/context-is-not-map-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Throws a TypeError if `this` does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/delete/context-is-not-object.js b/test/built-ins/Map/prototype/delete/context-is-not-object.js index 7b959405589..1402f9b2cd5 100644 --- a/test/built-ins/Map/prototype/delete/context-is-not-object.js +++ b/test/built-ins/Map/prototype/delete/context-is-not-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/delete/context-is-set-object-throws.js b/test/built-ins/Map/prototype/delete/context-is-set-object-throws.js index 36212455ec4..cb0e2087522 100644 --- a/test/built-ins/Map/prototype/delete/context-is-set-object-throws.js +++ b/test/built-ins/Map/prototype/delete/context-is-set-object-throws.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Throws a TypeError if `this` is a Set object. info: | diff --git a/test/built-ins/Map/prototype/delete/context-is-weakmap-object-throws.js b/test/built-ins/Map/prototype/delete/context-is-weakmap-object-throws.js index 3f403b7edd1..16d552a3540 100644 --- a/test/built-ins/Map/prototype/delete/context-is-weakmap-object-throws.js +++ b/test/built-ins/Map/prototype/delete/context-is-weakmap-object-throws.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/delete/delete.js b/test/built-ins/Map/prototype/delete/delete.js index 6d01496fe9b..624f3b09139 100644 --- a/test/built-ins/Map/prototype/delete/delete.js +++ b/test/built-ins/Map/prototype/delete/delete.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Map.prototype.delete ( ) diff --git a/test/built-ins/Map/prototype/delete/does-not-break-iterators.js b/test/built-ins/Map/prototype/delete/does-not-break-iterators.js index 1a788fdc0ce..1bb0fd45822 100644 --- a/test/built-ins/Map/prototype/delete/does-not-break-iterators.js +++ b/test/built-ins/Map/prototype/delete/does-not-break-iterators.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Deleting an entry does not break a [[MapData]] List. info: | diff --git a/test/built-ins/Map/prototype/delete/length.js b/test/built-ins/Map/prototype/delete/length.js index 4c8445367df..d30bb9e2723 100644 --- a/test/built-ins/Map/prototype/delete/length.js +++ b/test/built-ins/Map/prototype/delete/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Map.prototype.delete.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/delete/name.js b/test/built-ins/Map/prototype/delete/name.js index 9c969156a07..0a756693f8f 100644 --- a/test/built-ins/Map/prototype/delete/name.js +++ b/test/built-ins/Map/prototype/delete/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Map.prototype.delete.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/delete/returns-false.js b/test/built-ins/Map/prototype/delete/returns-false.js index d1db1c97c9c..898d4b2203c 100644 --- a/test/built-ins/Map/prototype/delete/returns-false.js +++ b/test/built-ins/Map/prototype/delete/returns-false.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Returns false when it does not delete an entry. info: | diff --git a/test/built-ins/Map/prototype/delete/returns-true-for-deleted-entry.js b/test/built-ins/Map/prototype/delete/returns-true-for-deleted-entry.js index 1f4ccb52ead..796815734df 100644 --- a/test/built-ins/Map/prototype/delete/returns-true-for-deleted-entry.js +++ b/test/built-ins/Map/prototype/delete/returns-true-for-deleted-entry.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.3 +esid: sec-map.prototype.delete description: > Returns true when deletes an entry. info: | diff --git a/test/built-ins/Map/prototype/descriptor.js b/test/built-ins/Map/prototype/descriptor.js index a883a20cba8..e507de1f9d9 100644 --- a/test/built-ins/Map/prototype/descriptor.js +++ b/test/built-ins/Map/prototype/descriptor.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.2.1 +esid: sec-map.prototype description: Map.prototype property attributes. info: | This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, diff --git a/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot-set.js b/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot-set.js index 35cd8188a70..8e4c308ae58 100644 --- a/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot-set.js +++ b/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.4 +esid: sec-map.prototype.entries description: > Throws a TypeError if `this` is a Set object. info: | diff --git a/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot-weakmap.js b/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot-weakmap.js index 9e3d4721779..7ce6e0cdd70 100644 --- a/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot-weakmap.js +++ b/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot-weakmap.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.4 +esid: sec-map.prototype.entries description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot.js b/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot.js index 1ca4d58bcee..37906606db5 100644 --- a/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot.js +++ b/test/built-ins/Map/prototype/entries/does-not-have-mapdata-internal-slot.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.4 +esid: sec-map.prototype.entries description: > Throws a TypeError if `this` object does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/entries/entries.js b/test/built-ins/Map/prototype/entries/entries.js index c1fb95efdfa..0ee74c9e45a 100644 --- a/test/built-ins/Map/prototype/entries/entries.js +++ b/test/built-ins/Map/prototype/entries/entries.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.4 +esid: sec-map.prototype.entries description: > Property type and descriptor. info: | diff --git a/test/built-ins/Map/prototype/entries/length.js b/test/built-ins/Map/prototype/entries/length.js index 00786c43f4e..5428e6cd8cb 100644 --- a/test/built-ins/Map/prototype/entries/length.js +++ b/test/built-ins/Map/prototype/entries/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.4 +esid: sec-map.prototype.entries description: > Map.prototype.entries.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/entries/name.js b/test/built-ins/Map/prototype/entries/name.js index 371c1b79bae..30608b2ad1e 100644 --- a/test/built-ins/Map/prototype/entries/name.js +++ b/test/built-ins/Map/prototype/entries/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.4 +esid: sec-map.prototype.entries description: > Map.prototype.entries.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/entries/returns-iterator-empty.js b/test/built-ins/Map/prototype/entries/returns-iterator-empty.js index c066e47545b..99be9461ac8 100644 --- a/test/built-ins/Map/prototype/entries/returns-iterator-empty.js +++ b/test/built-ins/Map/prototype/entries/returns-iterator-empty.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.4 +esid: sec-map.prototype.entries description: > Returns an iterator on an empty Map object. info: | diff --git a/test/built-ins/Map/prototype/entries/returns-iterator.js b/test/built-ins/Map/prototype/entries/returns-iterator.js index b2a8ef5c41a..49d54c97098 100644 --- a/test/built-ins/Map/prototype/entries/returns-iterator.js +++ b/test/built-ins/Map/prototype/entries/returns-iterator.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.4 +esid: sec-map.prototype.entries description: > Returns an iterator. info: | diff --git a/test/built-ins/Map/prototype/entries/this-not-object-throw.js b/test/built-ins/Map/prototype/entries/this-not-object-throw.js index 584eab876d6..997860ed001 100644 --- a/test/built-ins/Map/prototype/entries/this-not-object-throw.js +++ b/test/built-ins/Map/prototype/entries/this-not-object-throw.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.4 +esid: sec-map.prototype.entries description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/forEach/callback-parameters.js b/test/built-ins/Map/prototype/forEach/callback-parameters.js index fce44d23008..dee2aeb45d0 100644 --- a/test/built-ins/Map/prototype/forEach/callback-parameters.js +++ b/test/built-ins/Map/prototype/forEach/callback-parameters.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Verify the parameters order on the given callback. info: | diff --git a/test/built-ins/Map/prototype/forEach/callback-result-is-abrupt.js b/test/built-ins/Map/prototype/forEach/callback-result-is-abrupt.js index 7d6acbe7ef0..288aa8b3a69 100644 --- a/test/built-ins/Map/prototype/forEach/callback-result-is-abrupt.js +++ b/test/built-ins/Map/prototype/forEach/callback-result-is-abrupt.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Returns error from callback result is abrupt. info: | diff --git a/test/built-ins/Map/prototype/forEach/callback-this-non-strict.js b/test/built-ins/Map/prototype/forEach/callback-this-non-strict.js index b577aadf944..375c0989ab9 100644 --- a/test/built-ins/Map/prototype/forEach/callback-this-non-strict.js +++ b/test/built-ins/Map/prototype/forEach/callback-this-non-strict.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > If a thisArg is not provided, undefined will be used as the this value for each invocation of callbackfn. diff --git a/test/built-ins/Map/prototype/forEach/callback-this-strict.js b/test/built-ins/Map/prototype/forEach/callback-this-strict.js index c9e3ab6c9bf..36a31976ad1 100644 --- a/test/built-ins/Map/prototype/forEach/callback-this-strict.js +++ b/test/built-ins/Map/prototype/forEach/callback-this-strict.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > If a thisArg is not provided, undefined will be used as the this value for each invocation of callbackfn. diff --git a/test/built-ins/Map/prototype/forEach/deleted-values-during-foreach.js b/test/built-ins/Map/prototype/forEach/deleted-values-during-foreach.js index b78a2adbc90..18dffa2ae9c 100644 --- a/test/built-ins/Map/prototype/forEach/deleted-values-during-foreach.js +++ b/test/built-ins/Map/prototype/forEach/deleted-values-during-foreach.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Map state with deleted values during forEach. info: | diff --git a/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot-set.js b/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot-set.js index 7b2475dfa2b..9e0b25d07d5 100644 --- a/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot-set.js +++ b/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Throws a TypeError if `this` is a Set object. info: | diff --git a/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot-weakmap.js b/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot-weakmap.js index e4c212a3b91..0c39913c56a 100644 --- a/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot-weakmap.js +++ b/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot-weakmap.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot.js b/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot.js index 4c4886066b3..a03a663ad32 100644 --- a/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot.js +++ b/test/built-ins/Map/prototype/forEach/does-not-have-mapdata-internal-slot.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Throws a TypeError if `this` object does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/forEach/first-argument-is-not-callable.js b/test/built-ins/Map/prototype/forEach/first-argument-is-not-callable.js index 405966e0676..dd26c844465 100644 --- a/test/built-ins/Map/prototype/forEach/first-argument-is-not-callable.js +++ b/test/built-ins/Map/prototype/forEach/first-argument-is-not-callable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Throws a TypeError if first argument is not callable. info: | diff --git a/test/built-ins/Map/prototype/forEach/forEach.js b/test/built-ins/Map/prototype/forEach/forEach.js index 82e95f1ce13..13c2e69499e 100644 --- a/test/built-ins/Map/prototype/forEach/forEach.js +++ b/test/built-ins/Map/prototype/forEach/forEach.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Property type and descriptor. info: | diff --git a/test/built-ins/Map/prototype/forEach/iterates-in-key-insertion-order.js b/test/built-ins/Map/prototype/forEach/iterates-in-key-insertion-order.js index 4c9127ba0d3..e0f4ca924c2 100644 --- a/test/built-ins/Map/prototype/forEach/iterates-in-key-insertion-order.js +++ b/test/built-ins/Map/prototype/forEach/iterates-in-key-insertion-order.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Repeats for each non-empty record, in original key insertion order. info: | diff --git a/test/built-ins/Map/prototype/forEach/iterates-values-added-after-foreach-begins.js b/test/built-ins/Map/prototype/forEach/iterates-values-added-after-foreach-begins.js index 16986d1fb59..93a57008f12 100644 --- a/test/built-ins/Map/prototype/forEach/iterates-values-added-after-foreach-begins.js +++ b/test/built-ins/Map/prototype/forEach/iterates-values-added-after-foreach-begins.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > New keys are visited if created during forEach execution. info: | diff --git a/test/built-ins/Map/prototype/forEach/iterates-values-deleted-then-readded.js b/test/built-ins/Map/prototype/forEach/iterates-values-deleted-then-readded.js index afd155444ea..49a68011923 100644 --- a/test/built-ins/Map/prototype/forEach/iterates-values-deleted-then-readded.js +++ b/test/built-ins/Map/prototype/forEach/iterates-values-deleted-then-readded.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > New keys are visited if created during forEach execution. info: | diff --git a/test/built-ins/Map/prototype/forEach/length.js b/test/built-ins/Map/prototype/forEach/length.js index 3f57f9300cb..87378bc6bf8 100644 --- a/test/built-ins/Map/prototype/forEach/length.js +++ b/test/built-ins/Map/prototype/forEach/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Map.prototype.forEach.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/forEach/name.js b/test/built-ins/Map/prototype/forEach/name.js index cd6f24db987..438dcffe55c 100644 --- a/test/built-ins/Map/prototype/forEach/name.js +++ b/test/built-ins/Map/prototype/forEach/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Map.prototype.forEach.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/forEach/return-undefined.js b/test/built-ins/Map/prototype/forEach/return-undefined.js index 65eda735e81..c52e6d9aaad 100644 --- a/test/built-ins/Map/prototype/forEach/return-undefined.js +++ b/test/built-ins/Map/prototype/forEach/return-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Returns undefined. info: | diff --git a/test/built-ins/Map/prototype/forEach/second-parameter-as-callback-context.js b/test/built-ins/Map/prototype/forEach/second-parameter-as-callback-context.js index afe08c343bd..c63f0a4c46f 100644 --- a/test/built-ins/Map/prototype/forEach/second-parameter-as-callback-context.js +++ b/test/built-ins/Map/prototype/forEach/second-parameter-as-callback-context.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > If a thisArg parameter is provided, it will be used as the this value for each invocation of callbackfn. diff --git a/test/built-ins/Map/prototype/forEach/this-not-object-throw.js b/test/built-ins/Map/prototype/forEach/this-not-object-throw.js index 4d826a44b76..60b8bf49d48 100644 --- a/test/built-ins/Map/prototype/forEach/this-not-object-throw.js +++ b/test/built-ins/Map/prototype/forEach/this-not-object-throw.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.5 +esid: sec-map.prototype.forEach description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot-set.js b/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot-set.js index 9799bc0ac99..4d3e4f332d4 100644 --- a/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot-set.js +++ b/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > Throws a TypeError if `this` is a Set object. info: | diff --git a/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot-weakmap.js b/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot-weakmap.js index 87f186eab7d..0e0188535eb 100644 --- a/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot-weakmap.js +++ b/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot-weakmap.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot.js b/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot.js index 94cd73c0bee..fc402e28b17 100644 --- a/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot.js +++ b/test/built-ins/Map/prototype/get/does-not-have-mapdata-internal-slot.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > Throws a TypeError if `this` object does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/get/get.js b/test/built-ins/Map/prototype/get/get.js index cf9a95bfe7a..e3eec0b1a73 100644 --- a/test/built-ins/Map/prototype/get/get.js +++ b/test/built-ins/Map/prototype/get/get.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > Property type and descriptor. info: | diff --git a/test/built-ins/Map/prototype/get/length.js b/test/built-ins/Map/prototype/get/length.js index aa66bdf3ffa..d71eaddd23a 100644 --- a/test/built-ins/Map/prototype/get/length.js +++ b/test/built-ins/Map/prototype/get/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > Map.prototype.get.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/get/name.js b/test/built-ins/Map/prototype/get/name.js index bdf3f7f9c7b..f4354b606c3 100644 --- a/test/built-ins/Map/prototype/get/name.js +++ b/test/built-ins/Map/prototype/get/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > Map.prototype.get.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/get/returns-undefined.js b/test/built-ins/Map/prototype/get/returns-undefined.js index 42744d8c64e..c632db683be 100644 --- a/test/built-ins/Map/prototype/get/returns-undefined.js +++ b/test/built-ins/Map/prototype/get/returns-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > Returns undefined when key is not on the map. info: | diff --git a/test/built-ins/Map/prototype/get/returns-value-different-key-types.js b/test/built-ins/Map/prototype/get/returns-value-different-key-types.js index e6ba44ca5fc..34d11c95646 100644 --- a/test/built-ins/Map/prototype/get/returns-value-different-key-types.js +++ b/test/built-ins/Map/prototype/get/returns-value-different-key-types.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > Returns the value from the specified key on different types. info: | diff --git a/test/built-ins/Map/prototype/get/returns-value-normalized-zero-key.js b/test/built-ins/Map/prototype/get/returns-value-normalized-zero-key.js index 5bb12608ed9..9717f53d4ac 100644 --- a/test/built-ins/Map/prototype/get/returns-value-normalized-zero-key.js +++ b/test/built-ins/Map/prototype/get/returns-value-normalized-zero-key.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > -0 and +0 are normalized to +0; info: | diff --git a/test/built-ins/Map/prototype/get/this-not-object-throw.js b/test/built-ins/Map/prototype/get/this-not-object-throw.js index fe1225b8591..4d187b137eb 100644 --- a/test/built-ins/Map/prototype/get/this-not-object-throw.js +++ b/test/built-ins/Map/prototype/get/this-not-object-throw.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.6 +esid: sec-map.prototype.get description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot-set.js b/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot-set.js index cd1e8971b78..a6043ef4fca 100644 --- a/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot-set.js +++ b/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > Throws a TypeError if `this` is a Set object. info: | diff --git a/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot-weakmap.js b/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot-weakmap.js index ae88db85db0..e25d7d25a95 100644 --- a/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot-weakmap.js +++ b/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot-weakmap.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot.js b/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot.js index 67599c1e150..469ea185a0e 100644 --- a/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot.js +++ b/test/built-ins/Map/prototype/has/does-not-have-mapdata-internal-slot.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > Throws a TypeError if `this` object does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/has/has.js b/test/built-ins/Map/prototype/has/has.js index 5bb704fa920..2eea01bb475 100644 --- a/test/built-ins/Map/prototype/has/has.js +++ b/test/built-ins/Map/prototype/has/has.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > Property type and descriptor. info: | diff --git a/test/built-ins/Map/prototype/has/length.js b/test/built-ins/Map/prototype/has/length.js index 3eb2e8a2b9a..3302c772ef3 100644 --- a/test/built-ins/Map/prototype/has/length.js +++ b/test/built-ins/Map/prototype/has/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > Map.prototype.has.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/has/name.js b/test/built-ins/Map/prototype/has/name.js index 0e9b4c96c54..1df76c209df 100644 --- a/test/built-ins/Map/prototype/has/name.js +++ b/test/built-ins/Map/prototype/has/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > Map.prototype.has.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/has/normalizes-zero-key.js b/test/built-ins/Map/prototype/has/normalizes-zero-key.js index ddfdf5c3d40..a0d6fcd9f66 100644 --- a/test/built-ins/Map/prototype/has/normalizes-zero-key.js +++ b/test/built-ins/Map/prototype/has/normalizes-zero-key.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > -0 and +0 are normalized to +0; info: | diff --git a/test/built-ins/Map/prototype/has/return-false-different-key-types.js b/test/built-ins/Map/prototype/has/return-false-different-key-types.js index 0be565021b5..56c11dd8732 100644 --- a/test/built-ins/Map/prototype/has/return-false-different-key-types.js +++ b/test/built-ins/Map/prototype/has/return-false-different-key-types.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > Returns true for existing keys, using different key types. info: | diff --git a/test/built-ins/Map/prototype/has/return-true-different-key-types.js b/test/built-ins/Map/prototype/has/return-true-different-key-types.js index 591f4510941..d2a43c3ee6f 100644 --- a/test/built-ins/Map/prototype/has/return-true-different-key-types.js +++ b/test/built-ins/Map/prototype/has/return-true-different-key-types.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > Returns true for existing keys, using different key types. info: | diff --git a/test/built-ins/Map/prototype/has/this-not-object-throw.js b/test/built-ins/Map/prototype/has/this-not-object-throw.js index 831d19284f2..1e510b999f3 100644 --- a/test/built-ins/Map/prototype/has/this-not-object-throw.js +++ b/test/built-ins/Map/prototype/has/this-not-object-throw.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.7 +esid: sec-map.prototype.has description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot-set.js b/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot-set.js index d82d96c1c82..0be6192ab65 100644 --- a/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot-set.js +++ b/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.8 +esid: sec-map.prototype.keys description: > Throws a TypeError if `this` is a Set object. info: | diff --git a/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot-weakmap.js b/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot-weakmap.js index 5c9d6032a83..3b8c7706f02 100644 --- a/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot-weakmap.js +++ b/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot-weakmap.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.8 +esid: sec-map.prototype.keys description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot.js b/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot.js index 05a8e446fe7..d08132765f3 100644 --- a/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot.js +++ b/test/built-ins/Map/prototype/keys/does-not-have-mapdata-internal-slot.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.8 +esid: sec-map.prototype.keys description: > Throws a TypeError if `this` object does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/keys/keys.js b/test/built-ins/Map/prototype/keys/keys.js index 65a8ba5d1f4..051b8aa68db 100644 --- a/test/built-ins/Map/prototype/keys/keys.js +++ b/test/built-ins/Map/prototype/keys/keys.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.8 +esid: sec-map.prototype.keys description: > Property type and descriptor. info: | diff --git a/test/built-ins/Map/prototype/keys/length.js b/test/built-ins/Map/prototype/keys/length.js index 1ac9a4b8056..8dc6055bcf1 100644 --- a/test/built-ins/Map/prototype/keys/length.js +++ b/test/built-ins/Map/prototype/keys/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.8 +esid: sec-map.prototype.keys description: > Map.prototype.keys.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/keys/name.js b/test/built-ins/Map/prototype/keys/name.js index 5c790dac30b..34b1cb6a150 100644 --- a/test/built-ins/Map/prototype/keys/name.js +++ b/test/built-ins/Map/prototype/keys/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.8 +esid: sec-map.prototype.keys description: > Map.prototype.keys.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/keys/returns-iterator-empty.js b/test/built-ins/Map/prototype/keys/returns-iterator-empty.js index 999d0271a9c..1359f02e9bc 100644 --- a/test/built-ins/Map/prototype/keys/returns-iterator-empty.js +++ b/test/built-ins/Map/prototype/keys/returns-iterator-empty.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.8 +esid: sec-map.prototype.keys description: > Returns an iterator on an empty Map object. info: | diff --git a/test/built-ins/Map/prototype/keys/returns-iterator.js b/test/built-ins/Map/prototype/keys/returns-iterator.js index 0000df165a8..1459dc59f88 100644 --- a/test/built-ins/Map/prototype/keys/returns-iterator.js +++ b/test/built-ins/Map/prototype/keys/returns-iterator.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.8 +esid: sec-map.prototype.keys description: > Returns an iterator. info: | diff --git a/test/built-ins/Map/prototype/keys/this-not-object-throw.js b/test/built-ins/Map/prototype/keys/this-not-object-throw.js index ee0e09ee18b..ad3560eca7c 100644 --- a/test/built-ins/Map/prototype/keys/this-not-object-throw.js +++ b/test/built-ins/Map/prototype/keys/this-not-object-throw.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.8 +esid: sec-map.prototype.keys description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/set/append-new-values-normalizes-zero-key.js b/test/built-ins/Map/prototype/set/append-new-values-normalizes-zero-key.js index ad7967289b4..f7841841c4c 100644 --- a/test/built-ins/Map/prototype/set/append-new-values-normalizes-zero-key.js +++ b/test/built-ins/Map/prototype/set/append-new-values-normalizes-zero-key.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Appends new value in the map normalizing +0 and -0. info: | diff --git a/test/built-ins/Map/prototype/set/append-new-values-return-map.js b/test/built-ins/Map/prototype/set/append-new-values-return-map.js index 8e5d430698c..9d1e02c8b74 100644 --- a/test/built-ins/Map/prototype/set/append-new-values-return-map.js +++ b/test/built-ins/Map/prototype/set/append-new-values-return-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Map.prototype.set returns the given `this` object. info: | diff --git a/test/built-ins/Map/prototype/set/append-new-values.js b/test/built-ins/Map/prototype/set/append-new-values.js index 3cc9f6f6217..eb37fc97a42 100644 --- a/test/built-ins/Map/prototype/set/append-new-values.js +++ b/test/built-ins/Map/prototype/set/append-new-values.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Append a new value as the last element of entries. info: | diff --git a/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot-set.js b/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot-set.js index 13d2debc2ac..8e225f56011 100644 --- a/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot-set.js +++ b/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Throws a TypeError if `this` is a Set object. info: | diff --git a/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot-weakmap.js b/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot-weakmap.js index 9b77cbee089..86390f64f8f 100644 --- a/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot-weakmap.js +++ b/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot-weakmap.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot.js b/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot.js index 43e271061ec..8a4b86e75bc 100644 --- a/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot.js +++ b/test/built-ins/Map/prototype/set/does-not-have-mapdata-internal-slot.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Throws a TypeError if `this` object does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/set/length.js b/test/built-ins/Map/prototype/set/length.js index 44a7dec236b..b67f5747d02 100644 --- a/test/built-ins/Map/prototype/set/length.js +++ b/test/built-ins/Map/prototype/set/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Map.prototype.set.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/set/name.js b/test/built-ins/Map/prototype/set/name.js index 0b3ccc983e5..43cfd03bc40 100644 --- a/test/built-ins/Map/prototype/set/name.js +++ b/test/built-ins/Map/prototype/set/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Map.prototype.set.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/set/replaces-a-value-normalizes-zero-key.js b/test/built-ins/Map/prototype/set/replaces-a-value-normalizes-zero-key.js index 991c8a27708..6665e871cd6 100644 --- a/test/built-ins/Map/prototype/set/replaces-a-value-normalizes-zero-key.js +++ b/test/built-ins/Map/prototype/set/replaces-a-value-normalizes-zero-key.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Replaces a value in the map normalizing +0 and -0. info: | diff --git a/test/built-ins/Map/prototype/set/replaces-a-value-returns-map.js b/test/built-ins/Map/prototype/set/replaces-a-value-returns-map.js index 447a8c4d9e2..641610bb29a 100644 --- a/test/built-ins/Map/prototype/set/replaces-a-value-returns-map.js +++ b/test/built-ins/Map/prototype/set/replaces-a-value-returns-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Map.prototype.set returns the given `this` map object. info: | diff --git a/test/built-ins/Map/prototype/set/replaces-a-value.js b/test/built-ins/Map/prototype/set/replaces-a-value.js index 35b339dc6bf..637cc73dec3 100644 --- a/test/built-ins/Map/prototype/set/replaces-a-value.js +++ b/test/built-ins/Map/prototype/set/replaces-a-value.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Replaces a value in the map. info: | diff --git a/test/built-ins/Map/prototype/set/set.js b/test/built-ins/Map/prototype/set/set.js index dc800482a00..7e05eb028c0 100644 --- a/test/built-ins/Map/prototype/set/set.js +++ b/test/built-ins/Map/prototype/set/set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Property type and descriptor. info: | diff --git a/test/built-ins/Map/prototype/set/this-not-object-throw.js b/test/built-ins/Map/prototype/set/this-not-object-throw.js index fbba1261d05..10a250daa32 100644 --- a/test/built-ins/Map/prototype/set/this-not-object-throw.js +++ b/test/built-ins/Map/prototype/set/this-not-object-throw.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-map.prototype.set description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot-set.js b/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot-set.js index 27f94f4001e..e811b56ad5e 100644 --- a/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot-set.js +++ b/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot-set.js @@ -1,14 +1,12 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.10 +esid: sec-get-map.prototype.size description: > Throws a TypeError if `this` is a Set object. info: | - Map.prototype.set ( key , value ) - ... - 3. If M does not have a [[MapData]] internal slot, throw a TypeError + If M does not have a [[MapData]] internal slot, throw a TypeError exception. ... features: [Set] diff --git a/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot-weakmap.js b/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot-weakmap.js index 04a215af197..a3ab5d58297 100644 --- a/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot-weakmap.js +++ b/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot-weakmap.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-get-map.prototype.size description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot.js b/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot.js index 03f8a7d753b..24310df1123 100644 --- a/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot.js +++ b/test/built-ins/Map/prototype/size/does-not-have-mapdata-internal-slot.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.9 +esid: sec-get-map.prototype.size description: > Throws a TypeError if `this` object does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/size/length.js b/test/built-ins/Map/prototype/size/length.js index f803522c077..c92a3d6008a 100644 --- a/test/built-ins/Map/prototype/size/length.js +++ b/test/built-ins/Map/prototype/size/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.10 +esid: sec-get-map.prototype.size description: > Map.prototype.size.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/size/name.js b/test/built-ins/Map/prototype/size/name.js index 33e1feb8c29..f59936a771f 100644 --- a/test/built-ins/Map/prototype/size/name.js +++ b/test/built-ins/Map/prototype/size/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.10 +esid: sec-get-map.prototype.size description: > Map.prototype.size.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/size/returns-count-of-present-values-before-after-set-clear.js b/test/built-ins/Map/prototype/size/returns-count-of-present-values-before-after-set-clear.js index 17db3f931ad..eadeb752519 100644 --- a/test/built-ins/Map/prototype/size/returns-count-of-present-values-before-after-set-clear.js +++ b/test/built-ins/Map/prototype/size/returns-count-of-present-values-before-after-set-clear.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.10 +esid: sec-get-map.prototype.size description: > Returns count of present values before and after using `set` and `clear`. info: | diff --git a/test/built-ins/Map/prototype/size/returns-count-of-present-values-before-after-set-delete.js b/test/built-ins/Map/prototype/size/returns-count-of-present-values-before-after-set-delete.js index 415bb2c180c..90f371cf8e2 100644 --- a/test/built-ins/Map/prototype/size/returns-count-of-present-values-before-after-set-delete.js +++ b/test/built-ins/Map/prototype/size/returns-count-of-present-values-before-after-set-delete.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.10 +esid: sec-get-map.prototype.size description: > Returns count of present values before and after using `set` and `delete`. info: | diff --git a/test/built-ins/Map/prototype/size/returns-count-of-present-values-by-insertion.js b/test/built-ins/Map/prototype/size/returns-count-of-present-values-by-insertion.js index 0e85a0f62bf..80a7da25bb5 100644 --- a/test/built-ins/Map/prototype/size/returns-count-of-present-values-by-insertion.js +++ b/test/built-ins/Map/prototype/size/returns-count-of-present-values-by-insertion.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.10 +esid: sec-get-map.prototype.size description: > Returns count of present values inserted with set. info: | diff --git a/test/built-ins/Map/prototype/size/returns-count-of-present-values-by-iterable.js b/test/built-ins/Map/prototype/size/returns-count-of-present-values-by-iterable.js index 8fed41e025b..5a907472e05 100644 --- a/test/built-ins/Map/prototype/size/returns-count-of-present-values-by-iterable.js +++ b/test/built-ins/Map/prototype/size/returns-count-of-present-values-by-iterable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.10 +esid: sec-get-map.prototype.size description: > Returns count of present values inserted via iterable argument. info: | diff --git a/test/built-ins/Map/prototype/size/size.js b/test/built-ins/Map/prototype/size/size.js index 57a0dd28553..dd202a30048 100644 --- a/test/built-ins/Map/prototype/size/size.js +++ b/test/built-ins/Map/prototype/size/size.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.10 +esid: sec-get-map.prototype.size description: > Property type and descriptor. info: | diff --git a/test/built-ins/Map/prototype/size/this-not-object-throw.js b/test/built-ins/Map/prototype/size/this-not-object-throw.js index 12cc301b339..707608beb36 100644 --- a/test/built-ins/Map/prototype/size/this-not-object-throw.js +++ b/test/built-ins/Map/prototype/size/this-not-object-throw.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.10 +esid: sec-get-map.prototype.size description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot-set.js b/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot-set.js index 6593f04ebc9..4a1e5a45214 100644 --- a/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot-set.js +++ b/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.11 +esid: sec-map.prototype.values description: > Throws a TypeError if `this` is a Set object. info: | diff --git a/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot-weakmap.js b/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot-weakmap.js index 65de0302074..06f8f30b21b 100644 --- a/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot-weakmap.js +++ b/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot-weakmap.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.11 +esid: sec-map.prototype.values description: > Throws a TypeError if `this` is a WeakMap object. info: | diff --git a/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot.js b/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot.js index 03fd189a4be..eb94445ce7b 100644 --- a/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot.js +++ b/test/built-ins/Map/prototype/values/does-not-have-mapdata-internal-slot.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.11 +esid: sec-map.prototype.values description: > Throws a TypeError if `this` object does not have a [[MapData]] internal slot. info: | diff --git a/test/built-ins/Map/prototype/values/length.js b/test/built-ins/Map/prototype/values/length.js index 4f31dc83537..dafa1e06dde 100644 --- a/test/built-ins/Map/prototype/values/length.js +++ b/test/built-ins/Map/prototype/values/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.11 +esid: sec-map.prototype.values description: > Map.prototype.values.length value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/values/name.js b/test/built-ins/Map/prototype/values/name.js index dff0d9259a8..03aca25e719 100644 --- a/test/built-ins/Map/prototype/values/name.js +++ b/test/built-ins/Map/prototype/values/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.11 +esid: sec-map.prototype.values description: > Map.prototype.values.name value and descriptor. info: | diff --git a/test/built-ins/Map/prototype/values/returns-iterator-empty.js b/test/built-ins/Map/prototype/values/returns-iterator-empty.js index 11defb60eaf..792a4694771 100644 --- a/test/built-ins/Map/prototype/values/returns-iterator-empty.js +++ b/test/built-ins/Map/prototype/values/returns-iterator-empty.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.11 +esid: sec-map.prototype.values description: > Returns an iterator on an empty Map object. info: | diff --git a/test/built-ins/Map/prototype/values/returns-iterator.js b/test/built-ins/Map/prototype/values/returns-iterator.js index 82d3b84afa8..158c2b96041 100644 --- a/test/built-ins/Map/prototype/values/returns-iterator.js +++ b/test/built-ins/Map/prototype/values/returns-iterator.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.11 +esid: sec-map.prototype.values description: > Returns an iterator. info: | diff --git a/test/built-ins/Map/prototype/values/this-not-object-throw.js b/test/built-ins/Map/prototype/values/this-not-object-throw.js index 8073405380d..a7c647d5aef 100644 --- a/test/built-ins/Map/prototype/values/this-not-object-throw.js +++ b/test/built-ins/Map/prototype/values/this-not-object-throw.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.11 +esid: sec-map.prototype.values description: > Throws a TypeError if `this` is not an Object. info: | diff --git a/test/built-ins/Map/prototype/values/values.js b/test/built-ins/Map/prototype/values/values.js index cfb1c7bdd9c..bf2e5d057ef 100644 --- a/test/built-ins/Map/prototype/values/values.js +++ b/test/built-ins/Map/prototype/values/values.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.3.11 +esid: sec-map.prototype.values description: > Property type and descriptor. info: | diff --git a/test/built-ins/Map/undefined-newtarget.js b/test/built-ins/Map/undefined-newtarget.js index e83541ebf48..a756ee7d897 100644 --- a/test/built-ins/Map/undefined-newtarget.js +++ b/test/built-ins/Map/undefined-newtarget.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.1.1.1 +esid: sec-map-iterable description: > Throws a TypeError if Map is called without a newTarget. info: | diff --git a/test/built-ins/Set/Symbol.species/length.js b/test/built-ins/Set/Symbol.species/length.js index 86c48b3d36f..b51de1b0f89 100644 --- a/test/built-ins/Set/Symbol.species/length.js +++ b/test/built-ins/Set/Symbol.species/length.js @@ -2,7 +2,7 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.2.2 +esid: sec-get-set-@@species description: > get Set [ @@species ].length is 0. info: | diff --git a/test/built-ins/Set/Symbol.species/symbol-species-name.js b/test/built-ins/Set/Symbol.species/symbol-species-name.js index 2ca26eeaf4b..4e7e33fa086 100644 --- a/test/built-ins/Set/Symbol.species/symbol-species-name.js +++ b/test/built-ins/Set/Symbol.species/symbol-species-name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.2.2 +esid: sec-get-set-@@species description: > Set[Symbol.species] accessor property get name info: | diff --git a/test/built-ins/Set/Symbol.species/symbol-species.js b/test/built-ins/Set/Symbol.species/symbol-species.js index 5d59b94f31c..53f7871620d 100644 --- a/test/built-ins/Set/Symbol.species/symbol-species.js +++ b/test/built-ins/Set/Symbol.species/symbol-species.js @@ -2,11 +2,11 @@ // See LICENSE for details. /*--- -info: | - Set has a property at `Symbol.species` esid: sec-get-set-@@species -author: Sam Mikes description: Set[Symbol.species] exists per spec +info: | + Set has a property at `Symbol.species` +author: Sam Mikes includes: [propertyHelper.js] features: [Symbol.species] ---*/ diff --git a/test/built-ins/Set/constructor.js b/test/built-ins/Set/constructor.js index 859f2dceb18..00a8082f1da 100644 --- a/test/built-ins/Set/constructor.js +++ b/test/built-ins/Set/constructor.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1 +esid: sec-set-constructor description: > The Set constructor is the %Set% intrinsic object and the initial value of the Set property of the global object. diff --git a/test/built-ins/Set/length.js b/test/built-ins/Set/length.js index ec6e20b89bc..312a5a27fb4 100644 --- a/test/built-ins/Set/length.js +++ b/test/built-ins/Set/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.2 +esid: sec-set-constructor description: > Properties of the Set Constructor diff --git a/test/built-ins/Set/name.js b/test/built-ins/Set/name.js index c84ba9d01c7..f044fe9fcb1 100644 --- a/test/built-ins/Set/name.js +++ b/test/built-ins/Set/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/properties-of-the-set-prototype-object.js b/test/built-ins/Set/properties-of-the-set-prototype-object.js index f32c8075881..ed7bc553984 100644 --- a/test/built-ins/Set/properties-of-the-set-prototype-object.js +++ b/test/built-ins/Set/properties-of-the-set-prototype-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3 +esid: sec-properties-of-the-set-prototype-object description: > The Set prototype object is the intrinsic object %SetPrototype%. The value of the [[Prototype]] internal slot of the Set prototype diff --git a/test/built-ins/Set/prototype-of-set.js b/test/built-ins/Set/prototype-of-set.js index 966ec80dfdc..5b91e353d2c 100644 --- a/test/built-ins/Set/prototype-of-set.js +++ b/test/built-ins/Set/prototype-of-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.2 +esid: sec-properties-of-the-set-constructor description: > The value of the [[Prototype]] internal slot of the Set constructor is the intrinsic object %FunctionPrototype% (19.2.3). diff --git a/test/built-ins/Set/prototype/Symbol.iterator.js b/test/built-ins/Set/prototype/Symbol.iterator.js index 8bee7411bfb..8febee79d9f 100644 --- a/test/built-ins/Set/prototype/Symbol.iterator.js +++ b/test/built-ins/Set/prototype/Symbol.iterator.js @@ -2,6 +2,7 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- +esid: sec-set.prototype-@@iterator description: Initial state of the Symbol.iterator property info: | The initial value of the @@iterator property is the same function object as @@ -11,7 +12,6 @@ info: | should be writable and configurable, but not enumerable. includes: [propertyHelper.js] features: [Symbol.iterator] -es6id: 23.2.3.11 ---*/ assert.sameValue(Set.prototype[Symbol.iterator], Set.prototype.values); diff --git a/test/built-ins/Set/prototype/Symbol.toStringTag.js b/test/built-ins/Set/prototype/Symbol.toStringTag.js index cb3f1776db0..51009ba9344 100644 --- a/test/built-ins/Set/prototype/Symbol.toStringTag.js +++ b/test/built-ins/Set/prototype/Symbol.toStringTag.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.12 +esid: sec-set.prototype-@@tostringtag description: > `Symbol.toStringTag` property descriptor info: | diff --git a/test/built-ins/Set/prototype/Symbol.toStringTag/property-descriptor.js b/test/built-ins/Set/prototype/Symbol.toStringTag/property-descriptor.js index f85813c318d..c347199ddc8 100644 --- a/test/built-ins/Set/prototype/Symbol.toStringTag/property-descriptor.js +++ b/test/built-ins/Set/prototype/Symbol.toStringTag/property-descriptor.js @@ -2,11 +2,11 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- +esid: sec-set.prototype-@@tostringtag description: > `Object.prototype.getOwnPropertyDescriptor` should reflect the value and writability of the @@toStringTag attribute. includes: [propertyHelper.js] -es6id: 23.2.3.12 features: [Symbol.toStringTag] ---*/ diff --git a/test/built-ins/Set/prototype/add/add.js b/test/built-ins/Set/prototype/add/add.js index 775cd37a8f0..1c10fa4adf4 100644 --- a/test/built-ins/Set/prototype/add/add.js +++ b/test/built-ins/Set/prototype/add/add.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-array.js b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-array.js index 4e8d96a6fb1..6d2737b2b53 100644 --- a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-array.js +++ b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-array.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-map.js b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-map.js index e89eb439524..a6cd614be9c 100644 --- a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-map.js +++ b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-object.js b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-object.js index 2ea5416680f..7859f79deb8 100644 --- a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-object.js +++ b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-set-prototype.js b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-set-prototype.js index 2c29da5ab10..37754917056 100644 --- a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-set-prototype.js +++ b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-set-prototype.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-weakset.js b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-weakset.js index 601345e728f..a252d898405 100644 --- a/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-weakset.js +++ b/test/built-ins/Set/prototype/add/does-not-have-setdata-internal-slot-weakset.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/length.js b/test/built-ins/Set/prototype/add/length.js index 0a500894111..aca4d252707 100644 --- a/test/built-ins/Set/prototype/add/length.js +++ b/test/built-ins/Set/prototype/add/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/name.js b/test/built-ins/Set/prototype/add/name.js index 3453a36f1f7..b926f46a9b1 100644 --- a/test/built-ins/Set/prototype/add/name.js +++ b/test/built-ins/Set/prototype/add/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/preserves-insertion-order.js b/test/built-ins/Set/prototype/add/preserves-insertion-order.js index 5feda334a6f..f963f9a6854 100644 --- a/test/built-ins/Set/prototype/add/preserves-insertion-order.js +++ b/test/built-ins/Set/prototype/add/preserves-insertion-order.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/returns-this-when-ignoring-duplicate.js b/test/built-ins/Set/prototype/add/returns-this-when-ignoring-duplicate.js index 37519db7efb..545815e525a 100644 --- a/test/built-ins/Set/prototype/add/returns-this-when-ignoring-duplicate.js +++ b/test/built-ins/Set/prototype/add/returns-this-when-ignoring-duplicate.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/returns-this.js b/test/built-ins/Set/prototype/add/returns-this.js index 972a630c989..c8cb6542f99 100644 --- a/test/built-ins/Set/prototype/add/returns-this.js +++ b/test/built-ins/Set/prototype/add/returns-this.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/this-not-object-throw-boolean.js b/test/built-ins/Set/prototype/add/this-not-object-throw-boolean.js index 84baf0fd536..86556aa35ac 100644 --- a/test/built-ins/Set/prototype/add/this-not-object-throw-boolean.js +++ b/test/built-ins/Set/prototype/add/this-not-object-throw-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/this-not-object-throw-null.js b/test/built-ins/Set/prototype/add/this-not-object-throw-null.js index 467d3bd9637..658d9460d94 100644 --- a/test/built-ins/Set/prototype/add/this-not-object-throw-null.js +++ b/test/built-ins/Set/prototype/add/this-not-object-throw-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/this-not-object-throw-number.js b/test/built-ins/Set/prototype/add/this-not-object-throw-number.js index a4c7680370b..1231a906a98 100644 --- a/test/built-ins/Set/prototype/add/this-not-object-throw-number.js +++ b/test/built-ins/Set/prototype/add/this-not-object-throw-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/this-not-object-throw-string.js b/test/built-ins/Set/prototype/add/this-not-object-throw-string.js index fd3dcf9a4a2..2b8f4324a17 100644 --- a/test/built-ins/Set/prototype/add/this-not-object-throw-string.js +++ b/test/built-ins/Set/prototype/add/this-not-object-throw-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/this-not-object-throw-symbol.js b/test/built-ins/Set/prototype/add/this-not-object-throw-symbol.js index ade8dfc7a22..09c400bde80 100644 --- a/test/built-ins/Set/prototype/add/this-not-object-throw-symbol.js +++ b/test/built-ins/Set/prototype/add/this-not-object-throw-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/this-not-object-throw-undefined.js b/test/built-ins/Set/prototype/add/this-not-object-throw-undefined.js index 59c0eab3d86..8be3852cfd0 100644 --- a/test/built-ins/Set/prototype/add/this-not-object-throw-undefined.js +++ b/test/built-ins/Set/prototype/add/this-not-object-throw-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry-initial-iterable.js b/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry-initial-iterable.js index 6704819462c..52699077143 100644 --- a/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry-initial-iterable.js +++ b/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry-initial-iterable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry-normalizes-zero.js b/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry-normalizes-zero.js index 7ea0c2f466a..5f953386859 100644 --- a/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry-normalizes-zero.js +++ b/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry-normalizes-zero.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry.js b/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry.js index 59135db5bd6..46f8f76edc9 100644 --- a/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry.js +++ b/test/built-ins/Set/prototype/add/will-not-add-duplicate-entry.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.1 +esid: sec-set.prototype.add description: > Set.prototype.add ( value ) diff --git a/test/built-ins/Set/prototype/clear/clear.js b/test/built-ins/Set/prototype/clear/clear.js index 3d770e4c96f..6eb31e57ef6 100644 --- a/test/built-ins/Set/prototype/clear/clear.js +++ b/test/built-ins/Set/prototype/clear/clear.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/clears-all-contents-from-iterable.js b/test/built-ins/Set/prototype/clear/clears-all-contents-from-iterable.js index 2e9ff286bed..9d43c3cc840 100644 --- a/test/built-ins/Set/prototype/clear/clears-all-contents-from-iterable.js +++ b/test/built-ins/Set/prototype/clear/clears-all-contents-from-iterable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/clears-all-contents.js b/test/built-ins/Set/prototype/clear/clears-all-contents.js index 2d8b1ce16f7..59cc0ec58b5 100644 --- a/test/built-ins/Set/prototype/clear/clears-all-contents.js +++ b/test/built-ins/Set/prototype/clear/clears-all-contents.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/clears-an-empty-set.js b/test/built-ins/Set/prototype/clear/clears-an-empty-set.js index a9abaa68734..63cbbceaa80 100644 --- a/test/built-ins/Set/prototype/clear/clears-an-empty-set.js +++ b/test/built-ins/Set/prototype/clear/clears-an-empty-set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-array.js b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-array.js index db2ff73324e..5a93d7e03a1 100644 --- a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-array.js +++ b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-array.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-map.js b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-map.js index bae7bcc5e8e..86814f030a3 100644 --- a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-map.js +++ b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-object.js b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-object.js index 884481e4b46..362a54b7621 100644 --- a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-object.js +++ b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-set.prototype.js b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-set.prototype.js index dbc307405d6..bbe5d5887df 100644 --- a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-set.prototype.js +++ b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-set.prototype.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-weakset.js b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-weakset.js index 00d659aa966..29d4e61ba5a 100644 --- a/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-weakset.js +++ b/test/built-ins/Set/prototype/clear/does-not-have-setdata-internal-slot-weakset.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/length.js b/test/built-ins/Set/prototype/clear/length.js index 2a4758a7f3a..49f7e706504 100644 --- a/test/built-ins/Set/prototype/clear/length.js +++ b/test/built-ins/Set/prototype/clear/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/name.js b/test/built-ins/Set/prototype/clear/name.js index 613ce47290f..f22f8a5d843 100644 --- a/test/built-ins/Set/prototype/clear/name.js +++ b/test/built-ins/Set/prototype/clear/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/returns-undefined.js b/test/built-ins/Set/prototype/clear/returns-undefined.js index 1912b2bd604..2859f41084c 100644 --- a/test/built-ins/Set/prototype/clear/returns-undefined.js +++ b/test/built-ins/Set/prototype/clear/returns-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/this-not-object-throw-boolean.js b/test/built-ins/Set/prototype/clear/this-not-object-throw-boolean.js index f75865b59be..d6036f6d9b4 100644 --- a/test/built-ins/Set/prototype/clear/this-not-object-throw-boolean.js +++ b/test/built-ins/Set/prototype/clear/this-not-object-throw-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/this-not-object-throw-null.js b/test/built-ins/Set/prototype/clear/this-not-object-throw-null.js index f5cb6523219..11e0fe01cd6 100644 --- a/test/built-ins/Set/prototype/clear/this-not-object-throw-null.js +++ b/test/built-ins/Set/prototype/clear/this-not-object-throw-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/this-not-object-throw-number.js b/test/built-ins/Set/prototype/clear/this-not-object-throw-number.js index 8976ab6596e..506792e3986 100644 --- a/test/built-ins/Set/prototype/clear/this-not-object-throw-number.js +++ b/test/built-ins/Set/prototype/clear/this-not-object-throw-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/this-not-object-throw-string.js b/test/built-ins/Set/prototype/clear/this-not-object-throw-string.js index f70502dbeaf..4e4f462e5ab 100644 --- a/test/built-ins/Set/prototype/clear/this-not-object-throw-string.js +++ b/test/built-ins/Set/prototype/clear/this-not-object-throw-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/this-not-object-throw-symbol.js b/test/built-ins/Set/prototype/clear/this-not-object-throw-symbol.js index 2525d910914..5292e609965 100644 --- a/test/built-ins/Set/prototype/clear/this-not-object-throw-symbol.js +++ b/test/built-ins/Set/prototype/clear/this-not-object-throw-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/clear/this-not-object-throw-undefined.js b/test/built-ins/Set/prototype/clear/this-not-object-throw-undefined.js index b18ad0c4b02..074048a93b9 100644 --- a/test/built-ins/Set/prototype/clear/this-not-object-throw-undefined.js +++ b/test/built-ins/Set/prototype/clear/this-not-object-throw-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.2 +esid: sec-set.prototype.clear description: > Set.prototype.clear ( ) diff --git a/test/built-ins/Set/prototype/constructor/set-prototype-constructor-intrinsic.js b/test/built-ins/Set/prototype/constructor/set-prototype-constructor-intrinsic.js index b60455a021b..ec2eb9ad951 100644 --- a/test/built-ins/Set/prototype/constructor/set-prototype-constructor-intrinsic.js +++ b/test/built-ins/Set/prototype/constructor/set-prototype-constructor-intrinsic.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.3 +esid: sec-ecmascript-standard-built-in-objects description: > Set.prototype.constructor diff --git a/test/built-ins/Set/prototype/constructor/set-prototype-constructor.js b/test/built-ins/Set/prototype/constructor/set-prototype-constructor.js index 450bcba8445..db4af01e45a 100644 --- a/test/built-ins/Set/prototype/constructor/set-prototype-constructor.js +++ b/test/built-ins/Set/prototype/constructor/set-prototype-constructor.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-ecmascript-standard-built-in-objects description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/prototype/delete/delete-entry-initial-iterable.js b/test/built-ins/Set/prototype/delete/delete-entry-initial-iterable.js index eac255331f9..c3a15eeb4dd 100644 --- a/test/built-ins/Set/prototype/delete/delete-entry-initial-iterable.js +++ b/test/built-ins/Set/prototype/delete/delete-entry-initial-iterable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/delete-entry-normalizes-zero.js b/test/built-ins/Set/prototype/delete/delete-entry-normalizes-zero.js index 1726e96cd23..41a7bed0b1d 100644 --- a/test/built-ins/Set/prototype/delete/delete-entry-normalizes-zero.js +++ b/test/built-ins/Set/prototype/delete/delete-entry-normalizes-zero.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/delete-entry.js b/test/built-ins/Set/prototype/delete/delete-entry.js index 18ae2013f84..ac9c41f5842 100644 --- a/test/built-ins/Set/prototype/delete/delete-entry.js +++ b/test/built-ins/Set/prototype/delete/delete-entry.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/delete.js b/test/built-ins/Set/prototype/delete/delete.js index 772a742d055..e4abb5cacdb 100644 --- a/test/built-ins/Set/prototype/delete/delete.js +++ b/test/built-ins/Set/prototype/delete/delete.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-array.js b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-array.js index efeefeea961..d5e4e0db216 100644 --- a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-array.js +++ b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-array.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-map.js b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-map.js index f5e4f3c7fec..94befd948f2 100644 --- a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-map.js +++ b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-object.js b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-object.js index d155f8fd343..d9d6f89405b 100644 --- a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-object.js +++ b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-set-prototype.js b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-set-prototype.js index dde388fe0b8..d9a53552e8f 100644 --- a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-set-prototype.js +++ b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-set-prototype.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-weakset.js b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-weakset.js index 5e436f9f917..e85522519d8 100644 --- a/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-weakset.js +++ b/test/built-ins/Set/prototype/delete/does-not-have-setdata-internal-slot-weakset.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/length.js b/test/built-ins/Set/prototype/delete/length.js index ac4b5be75d8..a9b0008902b 100644 --- a/test/built-ins/Set/prototype/delete/length.js +++ b/test/built-ins/Set/prototype/delete/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/name.js b/test/built-ins/Set/prototype/delete/name.js index cd21d59b243..4d9fc1dc58c 100644 --- a/test/built-ins/Set/prototype/delete/name.js +++ b/test/built-ins/Set/prototype/delete/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/returns-false-when-delete-is-noop.js b/test/built-ins/Set/prototype/delete/returns-false-when-delete-is-noop.js index cce4026c3f1..031f864f7eb 100644 --- a/test/built-ins/Set/prototype/delete/returns-false-when-delete-is-noop.js +++ b/test/built-ins/Set/prototype/delete/returns-false-when-delete-is-noop.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/returns-true-when-delete-operation-occurs.js b/test/built-ins/Set/prototype/delete/returns-true-when-delete-operation-occurs.js index 9eaaa9cf33f..6b15167bad7 100644 --- a/test/built-ins/Set/prototype/delete/returns-true-when-delete-operation-occurs.js +++ b/test/built-ins/Set/prototype/delete/returns-true-when-delete-operation-occurs.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/this-not-object-throw-boolean.js b/test/built-ins/Set/prototype/delete/this-not-object-throw-boolean.js index 990c786151a..58bedfa16f5 100644 --- a/test/built-ins/Set/prototype/delete/this-not-object-throw-boolean.js +++ b/test/built-ins/Set/prototype/delete/this-not-object-throw-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/this-not-object-throw-null.js b/test/built-ins/Set/prototype/delete/this-not-object-throw-null.js index 26c31d75297..493a6f939f3 100644 --- a/test/built-ins/Set/prototype/delete/this-not-object-throw-null.js +++ b/test/built-ins/Set/prototype/delete/this-not-object-throw-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/this-not-object-throw-number.js b/test/built-ins/Set/prototype/delete/this-not-object-throw-number.js index c949089d7b3..038a67bbc71 100644 --- a/test/built-ins/Set/prototype/delete/this-not-object-throw-number.js +++ b/test/built-ins/Set/prototype/delete/this-not-object-throw-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/this-not-object-throw-string.js b/test/built-ins/Set/prototype/delete/this-not-object-throw-string.js index 2561043176d..99950ac421f 100644 --- a/test/built-ins/Set/prototype/delete/this-not-object-throw-string.js +++ b/test/built-ins/Set/prototype/delete/this-not-object-throw-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/this-not-object-throw-symbol.js b/test/built-ins/Set/prototype/delete/this-not-object-throw-symbol.js index 14352979744..794fb4b4094 100644 --- a/test/built-ins/Set/prototype/delete/this-not-object-throw-symbol.js +++ b/test/built-ins/Set/prototype/delete/this-not-object-throw-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/delete/this-not-object-throw-undefined.js b/test/built-ins/Set/prototype/delete/this-not-object-throw-undefined.js index 3866fbc751d..093e7b0046b 100644 --- a/test/built-ins/Set/prototype/delete/this-not-object-throw-undefined.js +++ b/test/built-ins/Set/prototype/delete/this-not-object-throw-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.4 +esid: sec-set.prototype.delete description: > Set.prototype.delete ( value ) diff --git a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-array.js b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-array.js index 3f365538830..bf18e93c362 100644 --- a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-array.js +++ b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-array.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-map.js b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-map.js index 00e785325cc..b0ce6b28bae 100644 --- a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-map.js +++ b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-object.js b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-object.js index ff21df1c7ed..4c58c8bc7cb 100644 --- a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-object.js +++ b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-set-prototype.js b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-set-prototype.js index 28a48a9791d..9da04849d48 100644 --- a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-set-prototype.js +++ b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-set-prototype.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-weakset.js b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-weakset.js index 2c8c888f8fd..612cd3b7b69 100644 --- a/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-weakset.js +++ b/test/built-ins/Set/prototype/entries/does-not-have-setdata-internal-slot-weakset.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/entries.js b/test/built-ins/Set/prototype/entries/entries.js index 8bed7599a52..461542e5366 100644 --- a/test/built-ins/Set/prototype/entries/entries.js +++ b/test/built-ins/Set/prototype/entries/entries.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/length.js b/test/built-ins/Set/prototype/entries/length.js index 9c7101323cf..2dc1c47ea6b 100644 --- a/test/built-ins/Set/prototype/entries/length.js +++ b/test/built-ins/Set/prototype/entries/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/name.js b/test/built-ins/Set/prototype/entries/name.js index afc2dcfbadc..b03ff21ed15 100644 --- a/test/built-ins/Set/prototype/entries/name.js +++ b/test/built-ins/Set/prototype/entries/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/returns-iterator-empty.js b/test/built-ins/Set/prototype/entries/returns-iterator-empty.js index 1cc49e645cf..29789bbe885 100644 --- a/test/built-ins/Set/prototype/entries/returns-iterator-empty.js +++ b/test/built-ins/Set/prototype/entries/returns-iterator-empty.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/returns-iterator.js b/test/built-ins/Set/prototype/entries/returns-iterator.js index df31df7b8df..a62e8c29981 100644 --- a/test/built-ins/Set/prototype/entries/returns-iterator.js +++ b/test/built-ins/Set/prototype/entries/returns-iterator.js @@ -1,7 +1,7 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/this-not-object-throw-boolean.js b/test/built-ins/Set/prototype/entries/this-not-object-throw-boolean.js index f413c7d3132..3dc97273fe1 100644 --- a/test/built-ins/Set/prototype/entries/this-not-object-throw-boolean.js +++ b/test/built-ins/Set/prototype/entries/this-not-object-throw-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/this-not-object-throw-null.js b/test/built-ins/Set/prototype/entries/this-not-object-throw-null.js index 40d1c87be1c..91e50670da4 100644 --- a/test/built-ins/Set/prototype/entries/this-not-object-throw-null.js +++ b/test/built-ins/Set/prototype/entries/this-not-object-throw-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/this-not-object-throw-number.js b/test/built-ins/Set/prototype/entries/this-not-object-throw-number.js index edc1ad19fca..671ccc4cc52 100644 --- a/test/built-ins/Set/prototype/entries/this-not-object-throw-number.js +++ b/test/built-ins/Set/prototype/entries/this-not-object-throw-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/this-not-object-throw-string.js b/test/built-ins/Set/prototype/entries/this-not-object-throw-string.js index 71187dd7606..d3ef0fabcdb 100644 --- a/test/built-ins/Set/prototype/entries/this-not-object-throw-string.js +++ b/test/built-ins/Set/prototype/entries/this-not-object-throw-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/this-not-object-throw-symbol.js b/test/built-ins/Set/prototype/entries/this-not-object-throw-symbol.js index e006726c77e..123dafab5b5 100644 --- a/test/built-ins/Set/prototype/entries/this-not-object-throw-symbol.js +++ b/test/built-ins/Set/prototype/entries/this-not-object-throw-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/entries/this-not-object-throw-undefined.js b/test/built-ins/Set/prototype/entries/this-not-object-throw-undefined.js index 987fb7f8eb6..2d1cc949631 100644 --- a/test/built-ins/Set/prototype/entries/this-not-object-throw-undefined.js +++ b/test/built-ins/Set/prototype/entries/this-not-object-throw-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.5 +esid: sec-set.prototype.entries description: > Set.prototype.entries ( ) diff --git a/test/built-ins/Set/prototype/forEach/callback-not-callable-boolean.js b/test/built-ins/Set/prototype/forEach/callback-not-callable-boolean.js index 6515e768619..4945cd6c251 100644 --- a/test/built-ins/Set/prototype/forEach/callback-not-callable-boolean.js +++ b/test/built-ins/Set/prototype/forEach/callback-not-callable-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/callback-not-callable-null.js b/test/built-ins/Set/prototype/forEach/callback-not-callable-null.js index 7d91ebe716e..09fcb853df5 100644 --- a/test/built-ins/Set/prototype/forEach/callback-not-callable-null.js +++ b/test/built-ins/Set/prototype/forEach/callback-not-callable-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/callback-not-callable-number.js b/test/built-ins/Set/prototype/forEach/callback-not-callable-number.js index 3062834d83d..7a659f54796 100644 --- a/test/built-ins/Set/prototype/forEach/callback-not-callable-number.js +++ b/test/built-ins/Set/prototype/forEach/callback-not-callable-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/callback-not-callable-string.js b/test/built-ins/Set/prototype/forEach/callback-not-callable-string.js index 6f9bd6b9055..213116f80d8 100644 --- a/test/built-ins/Set/prototype/forEach/callback-not-callable-string.js +++ b/test/built-ins/Set/prototype/forEach/callback-not-callable-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/callback-not-callable-symbol.js b/test/built-ins/Set/prototype/forEach/callback-not-callable-symbol.js index d715ea6e298..7b5085a9656 100644 --- a/test/built-ins/Set/prototype/forEach/callback-not-callable-symbol.js +++ b/test/built-ins/Set/prototype/forEach/callback-not-callable-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/callback-not-callable-undefined.js b/test/built-ins/Set/prototype/forEach/callback-not-callable-undefined.js index 695f05fc7d8..16e4d2ce61c 100644 --- a/test/built-ins/Set/prototype/forEach/callback-not-callable-undefined.js +++ b/test/built-ins/Set/prototype/forEach/callback-not-callable-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-array.js b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-array.js index dc5c8e85b25..e559a61aa8e 100644 --- a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-array.js +++ b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-array.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-map.js b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-map.js index 50f77f9eace..f636085ef82 100644 --- a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-map.js +++ b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-object.js b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-object.js index 6f75161ba33..c32c84012b3 100644 --- a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-object.js +++ b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-set-prototype.js b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-set-prototype.js index 72f6fe59ad7..da11304efb4 100644 --- a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-set-prototype.js +++ b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-set-prototype.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-weakset.js b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-weakset.js index 8dca9716fc0..43132114fea 100644 --- a/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-weakset.js +++ b/test/built-ins/Set/prototype/forEach/does-not-have-setdata-internal-slot-weakset.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/forEach.js b/test/built-ins/Set/prototype/forEach/forEach.js index 49ba06e754f..61f2801becf 100644 --- a/test/built-ins/Set/prototype/forEach/forEach.js +++ b/test/built-ins/Set/prototype/forEach/forEach.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/iterates-in-insertion-order.js b/test/built-ins/Set/prototype/forEach/iterates-in-insertion-order.js index 1912878e88b..dfbeecb8a28 100644 --- a/test/built-ins/Set/prototype/forEach/iterates-in-insertion-order.js +++ b/test/built-ins/Set/prototype/forEach/iterates-in-insertion-order.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/iterates-in-iterable-entry-order.js b/test/built-ins/Set/prototype/forEach/iterates-in-iterable-entry-order.js index d550e49c4c3..c9d14f4e9fb 100644 --- a/test/built-ins/Set/prototype/forEach/iterates-in-iterable-entry-order.js +++ b/test/built-ins/Set/prototype/forEach/iterates-in-iterable-entry-order.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/iterates-values-added-after-foreach-begins.js b/test/built-ins/Set/prototype/forEach/iterates-values-added-after-foreach-begins.js index 4aa6c032c04..28a4a17e3dd 100644 --- a/test/built-ins/Set/prototype/forEach/iterates-values-added-after-foreach-begins.js +++ b/test/built-ins/Set/prototype/forEach/iterates-values-added-after-foreach-begins.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/iterates-values-deleted-then-readded.js b/test/built-ins/Set/prototype/forEach/iterates-values-deleted-then-readded.js index a4fa59ae132..65d46793443 100644 --- a/test/built-ins/Set/prototype/forEach/iterates-values-deleted-then-readded.js +++ b/test/built-ins/Set/prototype/forEach/iterates-values-deleted-then-readded.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/iterates-values-not-deleted.js b/test/built-ins/Set/prototype/forEach/iterates-values-not-deleted.js index da64765dfc5..a452cd9bc75 100644 --- a/test/built-ins/Set/prototype/forEach/iterates-values-not-deleted.js +++ b/test/built-ins/Set/prototype/forEach/iterates-values-not-deleted.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/iterates-values-revisits-after-delete-re-add.js b/test/built-ins/Set/prototype/forEach/iterates-values-revisits-after-delete-re-add.js index 8657ea2d8e0..70a02396f8a 100644 --- a/test/built-ins/Set/prototype/forEach/iterates-values-revisits-after-delete-re-add.js +++ b/test/built-ins/Set/prototype/forEach/iterates-values-revisits-after-delete-re-add.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/length.js b/test/built-ins/Set/prototype/forEach/length.js index 84732ebce7f..4f525e35640 100644 --- a/test/built-ins/Set/prototype/forEach/length.js +++ b/test/built-ins/Set/prototype/forEach/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/name.js b/test/built-ins/Set/prototype/forEach/name.js index 9577b218990..dd547d8cda8 100644 --- a/test/built-ins/Set/prototype/forEach/name.js +++ b/test/built-ins/Set/prototype/forEach/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/returns-undefined.js b/test/built-ins/Set/prototype/forEach/returns-undefined.js index 7b04f846108..aaa87458a67 100644 --- a/test/built-ins/Set/prototype/forEach/returns-undefined.js +++ b/test/built-ins/Set/prototype/forEach/returns-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-arg-explicit-cannot-override-lexical-this-arrow.js b/test/built-ins/Set/prototype/forEach/this-arg-explicit-cannot-override-lexical-this-arrow.js index 80d8c7c4472..c44fd5dbb41 100644 --- a/test/built-ins/Set/prototype/forEach/this-arg-explicit-cannot-override-lexical-this-arrow.js +++ b/test/built-ins/Set/prototype/forEach/this-arg-explicit-cannot-override-lexical-this-arrow.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-arg-explicit.js b/test/built-ins/Set/prototype/forEach/this-arg-explicit.js index c525ce58833..9f3345a176d 100644 --- a/test/built-ins/Set/prototype/forEach/this-arg-explicit.js +++ b/test/built-ins/Set/prototype/forEach/this-arg-explicit.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-non-strict.js b/test/built-ins/Set/prototype/forEach/this-non-strict.js index 1c21659e1bd..b6c926d6bfb 100644 --- a/test/built-ins/Set/prototype/forEach/this-non-strict.js +++ b/test/built-ins/Set/prototype/forEach/this-non-strict.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-not-object-throw-boolean.js b/test/built-ins/Set/prototype/forEach/this-not-object-throw-boolean.js index 1c411a7a4aa..b74c738c7eb 100644 --- a/test/built-ins/Set/prototype/forEach/this-not-object-throw-boolean.js +++ b/test/built-ins/Set/prototype/forEach/this-not-object-throw-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-not-object-throw-null.js b/test/built-ins/Set/prototype/forEach/this-not-object-throw-null.js index e31175ef27e..755eccb00d6 100644 --- a/test/built-ins/Set/prototype/forEach/this-not-object-throw-null.js +++ b/test/built-ins/Set/prototype/forEach/this-not-object-throw-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-not-object-throw-number.js b/test/built-ins/Set/prototype/forEach/this-not-object-throw-number.js index 095daeb5950..45e1fde83f7 100644 --- a/test/built-ins/Set/prototype/forEach/this-not-object-throw-number.js +++ b/test/built-ins/Set/prototype/forEach/this-not-object-throw-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-not-object-throw-string.js b/test/built-ins/Set/prototype/forEach/this-not-object-throw-string.js index 483e6e03c94..5c939710f30 100644 --- a/test/built-ins/Set/prototype/forEach/this-not-object-throw-string.js +++ b/test/built-ins/Set/prototype/forEach/this-not-object-throw-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-not-object-throw-symbol.js b/test/built-ins/Set/prototype/forEach/this-not-object-throw-symbol.js index 01441e8cfff..fcc80460f1d 100644 --- a/test/built-ins/Set/prototype/forEach/this-not-object-throw-symbol.js +++ b/test/built-ins/Set/prototype/forEach/this-not-object-throw-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-not-object-throw-undefined.js b/test/built-ins/Set/prototype/forEach/this-not-object-throw-undefined.js index 9348b59cf9a..e8322f4fdb9 100644 --- a/test/built-ins/Set/prototype/forEach/this-not-object-throw-undefined.js +++ b/test/built-ins/Set/prototype/forEach/this-not-object-throw-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/this-strict.js b/test/built-ins/Set/prototype/forEach/this-strict.js index 652b9b824a7..ac05eba9488 100644 --- a/test/built-ins/Set/prototype/forEach/this-strict.js +++ b/test/built-ins/Set/prototype/forEach/this-strict.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/forEach/throws-when-callback-throws.js b/test/built-ins/Set/prototype/forEach/throws-when-callback-throws.js index c0fa686ad58..dbfce7dcd13 100644 --- a/test/built-ins/Set/prototype/forEach/throws-when-callback-throws.js +++ b/test/built-ins/Set/prototype/forEach/throws-when-callback-throws.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.6 +esid: sec-set.prototype.forEach description: > Set.prototype.forEach ( callbackfn [ , thisArg ] ) diff --git a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-array.js b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-array.js index 61dec187a19..9d3416aeb50 100644 --- a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-array.js +++ b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-array.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-map.js b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-map.js index db7fb92270b..90ee85c5245 100644 --- a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-map.js +++ b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-object.js b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-object.js index 9901a077618..7f28703b051 100644 --- a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-object.js +++ b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-set-prototype.js b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-set-prototype.js index f8a18b9d809..a14a6592f1e 100644 --- a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-set-prototype.js +++ b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-set-prototype.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-weakset.js b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-weakset.js index 8a27404e0a1..b0ae5eaad31 100644 --- a/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-weakset.js +++ b/test/built-ins/Set/prototype/has/does-not-have-setdata-internal-slot-weakset.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/has.js b/test/built-ins/Set/prototype/has/has.js index 7a2604657a2..8859dba366a 100644 --- a/test/built-ins/Set/prototype/has/has.js +++ b/test/built-ins/Set/prototype/has/has.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/length.js b/test/built-ins/Set/prototype/has/length.js index ffd887c2c36..48f7495155c 100644 --- a/test/built-ins/Set/prototype/has/length.js +++ b/test/built-ins/Set/prototype/has/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/name.js b/test/built-ins/Set/prototype/has/name.js index a243d6ea00e..c6a5412edc4 100644 --- a/test/built-ins/Set/prototype/has/name.js +++ b/test/built-ins/Set/prototype/has/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-false-when-undefined-added-deleted-not-present-undefined.js b/test/built-ins/Set/prototype/has/returns-false-when-undefined-added-deleted-not-present-undefined.js index b785272e12b..d8d3f068eac 100644 --- a/test/built-ins/Set/prototype/has/returns-false-when-undefined-added-deleted-not-present-undefined.js +++ b/test/built-ins/Set/prototype/has/returns-false-when-undefined-added-deleted-not-present-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-boolean.js b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-boolean.js index 1cb7f85c677..9991b85b3c4 100644 --- a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-boolean.js +++ b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-nan.js b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-nan.js index bcf66fe799f..719faa2c54a 100644 --- a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-nan.js +++ b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-nan.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-null.js b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-null.js index 9f901dedc86..a4872c48e3f 100644 --- a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-null.js +++ b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-number.js b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-number.js index 45754161dc0..1264e212b99 100644 --- a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-number.js +++ b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-string.js b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-string.js index 32f565adab6..7aefa985b64 100644 --- a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-string.js +++ b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-symbol.js b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-symbol.js index 04b5ac0c111..d34114ab01d 100644 --- a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-symbol.js +++ b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-undefined.js b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-undefined.js index 34746585901..618337ff8ca 100644 --- a/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-undefined.js +++ b/test/built-ins/Set/prototype/has/returns-false-when-value-not-present-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-true-when-value-present-boolean.js b/test/built-ins/Set/prototype/has/returns-true-when-value-present-boolean.js index a8e4be298b6..af8f32d1540 100644 --- a/test/built-ins/Set/prototype/has/returns-true-when-value-present-boolean.js +++ b/test/built-ins/Set/prototype/has/returns-true-when-value-present-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-true-when-value-present-nan.js b/test/built-ins/Set/prototype/has/returns-true-when-value-present-nan.js index 2d01e23595a..e510b91d78b 100644 --- a/test/built-ins/Set/prototype/has/returns-true-when-value-present-nan.js +++ b/test/built-ins/Set/prototype/has/returns-true-when-value-present-nan.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-true-when-value-present-null.js b/test/built-ins/Set/prototype/has/returns-true-when-value-present-null.js index e71814e2450..d8e73c512d8 100644 --- a/test/built-ins/Set/prototype/has/returns-true-when-value-present-null.js +++ b/test/built-ins/Set/prototype/has/returns-true-when-value-present-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-true-when-value-present-number.js b/test/built-ins/Set/prototype/has/returns-true-when-value-present-number.js index 41e772ecd9c..6eddf04772d 100644 --- a/test/built-ins/Set/prototype/has/returns-true-when-value-present-number.js +++ b/test/built-ins/Set/prototype/has/returns-true-when-value-present-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-true-when-value-present-string.js b/test/built-ins/Set/prototype/has/returns-true-when-value-present-string.js index fa219d4ea88..496e33ee1ce 100644 --- a/test/built-ins/Set/prototype/has/returns-true-when-value-present-string.js +++ b/test/built-ins/Set/prototype/has/returns-true-when-value-present-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-true-when-value-present-symbol.js b/test/built-ins/Set/prototype/has/returns-true-when-value-present-symbol.js index 3a47d9ca367..f36db261269 100644 --- a/test/built-ins/Set/prototype/has/returns-true-when-value-present-symbol.js +++ b/test/built-ins/Set/prototype/has/returns-true-when-value-present-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/returns-true-when-value-present-undefined.js b/test/built-ins/Set/prototype/has/returns-true-when-value-present-undefined.js index e317a2c9cec..b9cb38830f1 100644 --- a/test/built-ins/Set/prototype/has/returns-true-when-value-present-undefined.js +++ b/test/built-ins/Set/prototype/has/returns-true-when-value-present-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/this-not-object-throw-boolean.js b/test/built-ins/Set/prototype/has/this-not-object-throw-boolean.js index 75daf9474ad..4de891f5be7 100644 --- a/test/built-ins/Set/prototype/has/this-not-object-throw-boolean.js +++ b/test/built-ins/Set/prototype/has/this-not-object-throw-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/this-not-object-throw-null.js b/test/built-ins/Set/prototype/has/this-not-object-throw-null.js index ef3029a30c1..7b779c7da0a 100644 --- a/test/built-ins/Set/prototype/has/this-not-object-throw-null.js +++ b/test/built-ins/Set/prototype/has/this-not-object-throw-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/this-not-object-throw-number.js b/test/built-ins/Set/prototype/has/this-not-object-throw-number.js index b66afdfc512..fcc730aa219 100644 --- a/test/built-ins/Set/prototype/has/this-not-object-throw-number.js +++ b/test/built-ins/Set/prototype/has/this-not-object-throw-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/this-not-object-throw-string.js b/test/built-ins/Set/prototype/has/this-not-object-throw-string.js index ce24413e8f5..7f2114e1741 100644 --- a/test/built-ins/Set/prototype/has/this-not-object-throw-string.js +++ b/test/built-ins/Set/prototype/has/this-not-object-throw-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/this-not-object-throw-symbol.js b/test/built-ins/Set/prototype/has/this-not-object-throw-symbol.js index 46a76eb993c..44945d1b7e7 100644 --- a/test/built-ins/Set/prototype/has/this-not-object-throw-symbol.js +++ b/test/built-ins/Set/prototype/has/this-not-object-throw-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/has/this-not-object-throw-undefined.js b/test/built-ins/Set/prototype/has/this-not-object-throw-undefined.js index 1f6773176c1..f577c982659 100644 --- a/test/built-ins/Set/prototype/has/this-not-object-throw-undefined.js +++ b/test/built-ins/Set/prototype/has/this-not-object-throw-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.7 +esid: sec-set.prototype.has description: > Set.prototype.has ( value ) diff --git a/test/built-ins/Set/prototype/keys/keys.js b/test/built-ins/Set/prototype/keys/keys.js index 3845799b153..7ea413f7b05 100644 --- a/test/built-ins/Set/prototype/keys/keys.js +++ b/test/built-ins/Set/prototype/keys/keys.js @@ -2,10 +2,10 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- - description: > - The initial value of the keys property is the same function object as the - initial value of the values property. - es6id: 23.2.3.8 +esid: sec-set.prototype.keys +description: > + The initial value of the keys property is the same function object as the + initial value of the values property. ---*/ assert.sameValue( diff --git a/test/built-ins/Set/prototype/size/length.js b/test/built-ins/Set/prototype/size/length.js index f479a991eec..aeadc6bd17b 100644 --- a/test/built-ins/Set/prototype/size/length.js +++ b/test/built-ins/Set/prototype/size/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.9 +esid: sec-get-set.prototype.size description: > get Set.prototype.size diff --git a/test/built-ins/Set/prototype/size/name.js b/test/built-ins/Set/prototype/size/name.js index 9fe21baa08e..ced76d31894 100644 --- a/test/built-ins/Set/prototype/size/name.js +++ b/test/built-ins/Set/prototype/size/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.9 +esid: sec-get-set.prototype.size description: > get Set.prototype.size diff --git a/test/built-ins/Set/prototype/size/returns-count-of-present-values-before-after-add-delete.js b/test/built-ins/Set/prototype/size/returns-count-of-present-values-before-after-add-delete.js index 2c96222a0d9..5b711e818bd 100644 --- a/test/built-ins/Set/prototype/size/returns-count-of-present-values-before-after-add-delete.js +++ b/test/built-ins/Set/prototype/size/returns-count-of-present-values-before-after-add-delete.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.9 +esid: sec-get-set.prototype.size description: > get Set.prototype.size diff --git a/test/built-ins/Set/prototype/size/returns-count-of-present-values-by-insertion.js b/test/built-ins/Set/prototype/size/returns-count-of-present-values-by-insertion.js index 096ed5e7382..b772ca4fb4a 100644 --- a/test/built-ins/Set/prototype/size/returns-count-of-present-values-by-insertion.js +++ b/test/built-ins/Set/prototype/size/returns-count-of-present-values-by-insertion.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.9 +esid: sec-get-set.prototype.size description: > get Set.prototype.size diff --git a/test/built-ins/Set/prototype/size/returns-count-of-present-values-by-iterable.js b/test/built-ins/Set/prototype/size/returns-count-of-present-values-by-iterable.js index d7cc5a8a9ca..981c6650590 100644 --- a/test/built-ins/Set/prototype/size/returns-count-of-present-values-by-iterable.js +++ b/test/built-ins/Set/prototype/size/returns-count-of-present-values-by-iterable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.9 +esid: sec-get-set.prototype.size description: > get Set.prototype.size diff --git a/test/built-ins/Set/prototype/size/size.js b/test/built-ins/Set/prototype/size/size.js index db02a7bbbc3..0fecbb1daa8 100644 --- a/test/built-ins/Set/prototype/size/size.js +++ b/test/built-ins/Set/prototype/size/size.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.9 +esid: sec-get-set.prototype.size description: > get Set.prototype.size diff --git a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-array.js b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-array.js index 733edf0aebf..086fef7a65b 100644 --- a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-array.js +++ b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-array.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-map.js b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-map.js index c978d18a257..b3469949f99 100644 --- a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-map.js +++ b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-map.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-object.js b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-object.js index aa2d3110526..a1aee504e2f 100644 --- a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-object.js +++ b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-object.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-set-prototype.js b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-set-prototype.js index 251a2b32ce7..4e70b7da7fc 100644 --- a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-set-prototype.js +++ b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-set-prototype.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-weakset.js b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-weakset.js index bb23765cad7..ada31415569 100644 --- a/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-weakset.js +++ b/test/built-ins/Set/prototype/values/does-not-have-setdata-internal-slot-weakset.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/length.js b/test/built-ins/Set/prototype/values/length.js index 5d5666f6b22..3d89d09f32e 100644 --- a/test/built-ins/Set/prototype/values/length.js +++ b/test/built-ins/Set/prototype/values/length.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/name.js b/test/built-ins/Set/prototype/values/name.js index 5c7c0fa7c7e..e0cc04bda4e 100644 --- a/test/built-ins/Set/prototype/values/name.js +++ b/test/built-ins/Set/prototype/values/name.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/returns-iterator-empty.js b/test/built-ins/Set/prototype/values/returns-iterator-empty.js index af5ffe70ceb..6e4d60b9015 100644 --- a/test/built-ins/Set/prototype/values/returns-iterator-empty.js +++ b/test/built-ins/Set/prototype/values/returns-iterator-empty.js @@ -2,9 +2,9 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- - description: > - Returns an iterator that's already done if Set is empty. - es6id: 23.2.3.10 +esid: sec-set.prototype.values +description: > + Returns an iterator that's already done if Set is empty. ---*/ var set = new Set(); diff --git a/test/built-ins/Set/prototype/values/returns-iterator.js b/test/built-ins/Set/prototype/values/returns-iterator.js index 4fd1e863690..6314b63d397 100644 --- a/test/built-ins/Set/prototype/values/returns-iterator.js +++ b/test/built-ins/Set/prototype/values/returns-iterator.js @@ -2,10 +2,10 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- - description: > - The method should return a valid iterator with the context as the - IteratedObject. - es6id: 23.2.3.10 +esid: sec-set.prototype.values +description: > + The method should return a valid iterator with the context as the + IteratedObject. ---*/ var set = new Set(); diff --git a/test/built-ins/Set/prototype/values/this-not-object-throw-boolean.js b/test/built-ins/Set/prototype/values/this-not-object-throw-boolean.js index 32ea6143c4b..2f067d14bd5 100644 --- a/test/built-ins/Set/prototype/values/this-not-object-throw-boolean.js +++ b/test/built-ins/Set/prototype/values/this-not-object-throw-boolean.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/this-not-object-throw-null.js b/test/built-ins/Set/prototype/values/this-not-object-throw-null.js index efcb1b42580..7ce2c8be465 100644 --- a/test/built-ins/Set/prototype/values/this-not-object-throw-null.js +++ b/test/built-ins/Set/prototype/values/this-not-object-throw-null.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/this-not-object-throw-number.js b/test/built-ins/Set/prototype/values/this-not-object-throw-number.js index 9e1e16c1462..f9a3321bbe8 100644 --- a/test/built-ins/Set/prototype/values/this-not-object-throw-number.js +++ b/test/built-ins/Set/prototype/values/this-not-object-throw-number.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/this-not-object-throw-string.js b/test/built-ins/Set/prototype/values/this-not-object-throw-string.js index 63adc31fc86..e37f22072a2 100644 --- a/test/built-ins/Set/prototype/values/this-not-object-throw-string.js +++ b/test/built-ins/Set/prototype/values/this-not-object-throw-string.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/this-not-object-throw-symbol.js b/test/built-ins/Set/prototype/values/this-not-object-throw-symbol.js index 549fa1f1fc4..2ac2d18fe44 100644 --- a/test/built-ins/Set/prototype/values/this-not-object-throw-symbol.js +++ b/test/built-ins/Set/prototype/values/this-not-object-throw-symbol.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/this-not-object-throw-undefined.js b/test/built-ins/Set/prototype/values/this-not-object-throw-undefined.js index 52e8d1b7bfd..6223cfb345b 100644 --- a/test/built-ins/Set/prototype/values/this-not-object-throw-undefined.js +++ b/test/built-ins/Set/prototype/values/this-not-object-throw-undefined.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/prototype/values/values-iteration-mutable.js b/test/built-ins/Set/prototype/values/values-iteration-mutable.js index f2cff408fec..4a6c759f174 100644 --- a/test/built-ins/Set/prototype/values/values-iteration-mutable.js +++ b/test/built-ins/Set/prototype/values/values-iteration-mutable.js @@ -2,12 +2,12 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- - description: > - When an item is added to the set after the iterator is created but before - the iterator is "done" (as defined by 23.2.5.2.1), the new item should be - accessible via iteration. When an item is added to the set after the - iterator is "done", the new item should not be accessible via iteration. - es6id: 23.2.3.10 +esid: sec-set.prototype.values +description: > + When an item is added to the set after the iterator is created but before + the iterator is "done" (as defined by 23.2.5.2.1), the new item should be + accessible via iteration. When an item is added to the set after the + iterator is "done", the new item should not be accessible via iteration. ---*/ var set = new Set(); diff --git a/test/built-ins/Set/prototype/values/values.js b/test/built-ins/Set/prototype/values/values.js index 4f9121c9f28..76e4e83f8bb 100644 --- a/test/built-ins/Set/prototype/values/values.js +++ b/test/built-ins/Set/prototype/values/values.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.10 +esid: sec-set.prototype.values description: > Set.prototype.values ( ) diff --git a/test/built-ins/Set/set-does-not-throw-when-add-is-not-callable.js b/test/built-ins/Set/set-does-not-throw-when-add-is-not-callable.js index 5067b614685..0c418ce9fff 100644 --- a/test/built-ins/Set/set-does-not-throw-when-add-is-not-callable.js +++ b/test/built-ins/Set/set-does-not-throw-when-add-is-not-callable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-get-add-method-failure.js b/test/built-ins/Set/set-get-add-method-failure.js index ed4ea3f1b28..633a5bc9943 100644 --- a/test/built-ins/Set/set-get-add-method-failure.js +++ b/test/built-ins/Set/set-get-add-method-failure.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-iterable-calls-add.js b/test/built-ins/Set/set-iterable-calls-add.js index f6c231c9940..e8a00cec061 100644 --- a/test/built-ins/Set/set-iterable-calls-add.js +++ b/test/built-ins/Set/set-iterable-calls-add.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-iterable-empty-does-not-call-add.js b/test/built-ins/Set/set-iterable-empty-does-not-call-add.js index e29f97b3970..a36af421510 100644 --- a/test/built-ins/Set/set-iterable-empty-does-not-call-add.js +++ b/test/built-ins/Set/set-iterable-empty-does-not-call-add.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-iterable-throws-when-add-is-not-callable.js b/test/built-ins/Set/set-iterable-throws-when-add-is-not-callable.js index 9305b6667e0..e3d6eac05ec 100644 --- a/test/built-ins/Set/set-iterable-throws-when-add-is-not-callable.js +++ b/test/built-ins/Set/set-iterable-throws-when-add-is-not-callable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-iterable.js b/test/built-ins/Set/set-iterable.js index 649bf20ff43..a83a588a672 100644 --- a/test/built-ins/Set/set-iterable.js +++ b/test/built-ins/Set/set-iterable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-iterator-close-after-add-failure.js b/test/built-ins/Set/set-iterator-close-after-add-failure.js index ad077f63304..989bbc2010c 100644 --- a/test/built-ins/Set/set-iterator-close-after-add-failure.js +++ b/test/built-ins/Set/set-iterator-close-after-add-failure.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-iterator-next-failure.js b/test/built-ins/Set/set-iterator-next-failure.js index 171abef9c54..746dea8b13f 100644 --- a/test/built-ins/Set/set-iterator-next-failure.js +++ b/test/built-ins/Set/set-iterator-next-failure.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-iterator-value-failure.js b/test/built-ins/Set/set-iterator-value-failure.js index ac45b116fa9..82620b33dd2 100644 --- a/test/built-ins/Set/set-iterator-value-failure.js +++ b/test/built-ins/Set/set-iterator-value-failure.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-newtarget.js b/test/built-ins/Set/set-newtarget.js index d5d9613e0ca..244b6f49a84 100644 --- a/test/built-ins/Set/set-newtarget.js +++ b/test/built-ins/Set/set-newtarget.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-no-iterable.js b/test/built-ins/Set/set-no-iterable.js index a13db51d846..311ff533330 100644 --- a/test/built-ins/Set/set-no-iterable.js +++ b/test/built-ins/Set/set-no-iterable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set-undefined-newtarget.js b/test/built-ins/Set/set-undefined-newtarget.js index ef420bf87c1..29c8dfecff0 100644 --- a/test/built-ins/Set/set-undefined-newtarget.js +++ b/test/built-ins/Set/set-undefined-newtarget.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/Set/set.js b/test/built-ins/Set/set.js index 104d859cd47..9b1c27dba5e 100644 --- a/test/built-ins/Set/set.js +++ b/test/built-ins/Set/set.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.1.1 +esid: sec-set-constructor description: > Set ( [ iterable ] ) diff --git a/test/built-ins/SetIteratorPrototype/next/iteration-mutable.js b/test/built-ins/SetIteratorPrototype/next/iteration-mutable.js index 9d91688eab8..c762089063e 100644 --- a/test/built-ins/SetIteratorPrototype/next/iteration-mutable.js +++ b/test/built-ins/SetIteratorPrototype/next/iteration-mutable.js @@ -1,7 +1,7 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.11 +esid: sec-set.prototype-@@iterator description: > When an item is added to the set after the iterator is created but before the iterator is "done" (as defined by 23.2.5.2.1), the new item should be diff --git a/test/built-ins/SetIteratorPrototype/next/iteration.js b/test/built-ins/SetIteratorPrototype/next/iteration.js index 2b91ecb13c8..9abf9f26f4e 100644 --- a/test/built-ins/SetIteratorPrototype/next/iteration.js +++ b/test/built-ins/SetIteratorPrototype/next/iteration.js @@ -1,7 +1,7 @@ // Copyright (C) 2014 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 23.2.3.11 +esid: sec-set.prototype-@@iterator description: > The method should return a valid iterator with the context as the IteratedObject.