chore: update esids in test/built-ins/{Map|Set}

This commit is contained in:
rwaldron 2021-12-07 11:00:43 -05:00 committed by Rick Waldron
parent d3c5171efd
commit 44b224d388
319 changed files with 335 additions and 337 deletions

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1 esid: sec-map-constructor
description: > description: >
The Map constructor is the %Map% intrinsic object and the initial value of the The Map constructor is the %Map% intrinsic object and the initial value of the
Map property of the global object. Map property of the global object.

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
Creating a new Map object without arguments doesn't throw if `set` is not Creating a new Map object without arguments doesn't throw if `set` is not
callable callable

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
new Map returns abrupt from getting Map.prototype.set. new Map returns abrupt from getting Map.prototype.set.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
new Map calls `set` for each item on the iterable argument in order. new Map calls `set` for each item on the iterable argument in order.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
The iterator is closed when `Map.prototype.set` throws an error. The iterator is closed when `Map.prototype.set` throws an error.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
Closes iterator if item first entry completes abruptly. Closes iterator if item first entry completes abruptly.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
Closes iterator if item second entry completes abruptly. Closes iterator if item second entry completes abruptly.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
Closes the iterator after `not Object` error. Closes the iterator after `not Object` error.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
Throws a TypeError if iterable items are not Objects. Throws a TypeError if iterable items are not Objects.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
The iterator is closed when iterable `next` throws an error. The iterator is closed when iterable `next` throws an error.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
The iterator is closed when iterable `next` value throws an error. The iterator is closed when iterable `next` value throws an error.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
A Map constructed with an empty iterable argument does not call set. A Map constructed with an empty iterable argument does not call set.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
Throws a TypeError if `set` is not callable on Map constructor with a Throws a TypeError if `set` is not callable on Map constructor with a
iterable argument. iterable argument.

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
Contructor returns a map object set with the elements from the iterable Contructor returns a map object set with the elements from the iterable
argument. argument.

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
A Map constructed without a iterable argument does not call set. A Map constructed without a iterable argument does not call set.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
Returns the new Map object with the new empty list if the iterable argument is Returns the new Map object with the new empty list if the iterable argument is
undefined. undefined.

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
Map descriptor as a standard built-in object. Map descriptor as a standard built-in object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // 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. description: Map.name value and descriptor.
info: | info: |
Map ( [ iterable ] ) Map ( [ iterable ] )

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.1.1 esid: sec-map-iterable
description: > description: >
The new Map object's prototype is Map.prototype The new Map object's prototype is Map.prototype
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2014 the V8 project authors. All rights reserved. // Copyright (C) 2014 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // 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 description: Initial state of the Symbol.iterator property
info: | info: |
The initial value of the @@iterator property is the same function object as The initial value of the @@iterator property is the same function object as

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.13 esid: sec-map.prototype-@@tostringtag
description: > description: >
`Symbol.toStringTag` property descriptor `Symbol.toStringTag` property descriptor
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
Clears a Map. Clears a Map.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
Map.prototype.clear ( ) Map.prototype.clear ( )

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
Throws a TypeError if `this` does not have a [[MapData]] internal slot. Throws a TypeError if `this` does not have a [[MapData]] internal slot.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
Throws a TypeError if `this` is not an Object. Throws a TypeError if `this` is not an Object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
Throws a TypeError if `this` is a Set object. Throws a TypeError if `this` is a Set object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
Throws a TypeError if `this` is a WeakMap object. Throws a TypeError if `this` is a WeakMap object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
Map.prototype.clear.length value and descriptor. Map.prototype.clear.length value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
The existing [[MapData]] List is preserved. The existing [[MapData]] List is preserved.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
Map.prototype.entries.name value and descriptor. Map.prototype.entries.name value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.1 esid: sec-map.prototype.clear
description: > description: >
Returns undefined. Returns undefined.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // 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 description: Map.prototype.constructor value and descriptor
info: | info: |
The initial value of Map.prototype.constructor is the intrinsic object %Map%. The initial value of Map.prototype.constructor is the intrinsic object %Map%.

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Throws a TypeError if `this` does not have a [[MapData]] internal slot. Throws a TypeError if `this` does not have a [[MapData]] internal slot.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Throws a TypeError if `this` is not an Object. Throws a TypeError if `this` is not an Object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Throws a TypeError if `this` is a Set object. Throws a TypeError if `this` is a Set object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Throws a TypeError if `this` is a WeakMap object. Throws a TypeError if `this` is a WeakMap object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Map.prototype.delete ( ) Map.prototype.delete ( )

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Deleting an entry does not break a [[MapData]] List. Deleting an entry does not break a [[MapData]] List.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Map.prototype.delete.length value and descriptor. Map.prototype.delete.length value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Map.prototype.delete.name value and descriptor. Map.prototype.delete.name value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Returns false when it does not delete an entry. Returns false when it does not delete an entry.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.3 esid: sec-map.prototype.delete
description: > description: >
Returns true when deletes an entry. Returns true when deletes an entry.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // 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. description: Map.prototype property attributes.
info: | info: |
This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, This property has the attributes { [[Writable]]: false, [[Enumerable]]: false,

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.4 esid: sec-map.prototype.entries
description: > description: >
Throws a TypeError if `this` is a Set object. Throws a TypeError if `this` is a Set object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.4 esid: sec-map.prototype.entries
description: > description: >
Throws a TypeError if `this` is a WeakMap object. Throws a TypeError if `this` is a WeakMap object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.4 esid: sec-map.prototype.entries
description: > description: >
Throws a TypeError if `this` object does not have a [[MapData]] internal slot. Throws a TypeError if `this` object does not have a [[MapData]] internal slot.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.4 esid: sec-map.prototype.entries
description: > description: >
Property type and descriptor. Property type and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.4 esid: sec-map.prototype.entries
description: > description: >
Map.prototype.entries.length value and descriptor. Map.prototype.entries.length value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.4 esid: sec-map.prototype.entries
description: > description: >
Map.prototype.entries.name value and descriptor. Map.prototype.entries.name value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.4 esid: sec-map.prototype.entries
description: > description: >
Returns an iterator on an empty Map object. Returns an iterator on an empty Map object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.4 esid: sec-map.prototype.entries
description: > description: >
Returns an iterator. Returns an iterator.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.4 esid: sec-map.prototype.entries
description: > description: >
Throws a TypeError if `this` is not an Object. Throws a TypeError if `this` is not an Object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Verify the parameters order on the given callback. Verify the parameters order on the given callback.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Returns error from callback result is abrupt. Returns error from callback result is abrupt.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
If a thisArg is not provided, undefined will be used as the this value for If a thisArg is not provided, undefined will be used as the this value for
each invocation of callbackfn. each invocation of callbackfn.

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
If a thisArg is not provided, undefined will be used as the this value for If a thisArg is not provided, undefined will be used as the this value for
each invocation of callbackfn. each invocation of callbackfn.

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Map state with deleted values during forEach. Map state with deleted values during forEach.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Throws a TypeError if `this` is a Set object. Throws a TypeError if `this` is a Set object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Throws a TypeError if `this` is a WeakMap object. Throws a TypeError if `this` is a WeakMap object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Throws a TypeError if `this` object does not have a [[MapData]] internal slot. Throws a TypeError if `this` object does not have a [[MapData]] internal slot.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Throws a TypeError if first argument is not callable. Throws a TypeError if first argument is not callable.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Property type and descriptor. Property type and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Repeats for each non-empty record, in original key insertion order. Repeats for each non-empty record, in original key insertion order.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
New keys are visited if created during forEach execution. New keys are visited if created during forEach execution.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
New keys are visited if created during forEach execution. New keys are visited if created during forEach execution.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Map.prototype.forEach.length value and descriptor. Map.prototype.forEach.length value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Map.prototype.forEach.name value and descriptor. Map.prototype.forEach.name value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Returns undefined. Returns undefined.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
If a thisArg parameter is provided, it will be used as the this value for each If a thisArg parameter is provided, it will be used as the this value for each
invocation of callbackfn. invocation of callbackfn.

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.5 esid: sec-map.prototype.forEach
description: > description: >
Throws a TypeError if `this` is not an Object. Throws a TypeError if `this` is not an Object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
Throws a TypeError if `this` is a Set object. Throws a TypeError if `this` is a Set object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
Throws a TypeError if `this` is a WeakMap object. Throws a TypeError if `this` is a WeakMap object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
Throws a TypeError if `this` object does not have a [[MapData]] internal slot. Throws a TypeError if `this` object does not have a [[MapData]] internal slot.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
Property type and descriptor. Property type and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
Map.prototype.get.length value and descriptor. Map.prototype.get.length value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
Map.prototype.get.name value and descriptor. Map.prototype.get.name value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
Returns undefined when key is not on the map. Returns undefined when key is not on the map.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
Returns the value from the specified key on different types. Returns the value from the specified key on different types.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
-0 and +0 are normalized to +0; -0 and +0 are normalized to +0;
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.6 esid: sec-map.prototype.get
description: > description: >
Throws a TypeError if `this` is not an Object. Throws a TypeError if `this` is not an Object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
Throws a TypeError if `this` is a Set object. Throws a TypeError if `this` is a Set object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
Throws a TypeError if `this` is a WeakMap object. Throws a TypeError if `this` is a WeakMap object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
Throws a TypeError if `this` object does not have a [[MapData]] internal slot. Throws a TypeError if `this` object does not have a [[MapData]] internal slot.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
Property type and descriptor. Property type and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
Map.prototype.has.length value and descriptor. Map.prototype.has.length value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
Map.prototype.has.name value and descriptor. Map.prototype.has.name value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
-0 and +0 are normalized to +0; -0 and +0 are normalized to +0;
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
Returns true for existing keys, using different key types. Returns true for existing keys, using different key types.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
Returns true for existing keys, using different key types. Returns true for existing keys, using different key types.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.7 esid: sec-map.prototype.has
description: > description: >
Throws a TypeError if `this` is not an Object. Throws a TypeError if `this` is not an Object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.8 esid: sec-map.prototype.keys
description: > description: >
Throws a TypeError if `this` is a Set object. Throws a TypeError if `this` is a Set object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.8 esid: sec-map.prototype.keys
description: > description: >
Throws a TypeError if `this` is a WeakMap object. Throws a TypeError if `this` is a WeakMap object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.8 esid: sec-map.prototype.keys
description: > description: >
Throws a TypeError if `this` object does not have a [[MapData]] internal slot. Throws a TypeError if `this` object does not have a [[MapData]] internal slot.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.8 esid: sec-map.prototype.keys
description: > description: >
Property type and descriptor. Property type and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.8 esid: sec-map.prototype.keys
description: > description: >
Map.prototype.keys.length value and descriptor. Map.prototype.keys.length value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.8 esid: sec-map.prototype.keys
description: > description: >
Map.prototype.keys.name value and descriptor. Map.prototype.keys.name value and descriptor.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.8 esid: sec-map.prototype.keys
description: > description: >
Returns an iterator on an empty Map object. Returns an iterator on an empty Map object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.8 esid: sec-map.prototype.keys
description: > description: >
Returns an iterator. Returns an iterator.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.8 esid: sec-map.prototype.keys
description: > description: >
Throws a TypeError if `this` is not an Object. Throws a TypeError if `this` is not an Object.
info: | info: |

View File

@ -1,7 +1,7 @@
// Copyright (C) 2015 the V8 project authors. All rights reserved. // Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
es6id: 23.1.3.9 esid: sec-map.prototype.set
description: > description: >
Appends new value in the map normalizing +0 and -0. Appends new value in the map normalizing +0 and -0.
info: | info: |

Some files were not shown because too many files have changed in this diff Show More