Skip to content

Commit

Permalink
chore: update esids in test/built-ins/{Map|Set}
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Dec 7, 2021
1 parent d3c5171 commit 44b224d
Show file tree
Hide file tree
Showing 319 changed files with 335 additions and 337 deletions.
2 changes: 1 addition & 1 deletion test/built-ins/Map/constructor.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/get-set-method-failure.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/iterable-calls-set.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/iterator-close-after-set-failure.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/iterator-items-are-not-object.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/iterator-next-failure.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/iterator-value-failure.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/map-iterable-empty-does-not-call-set.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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.
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/map-iterable.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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.
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/map-no-iterable-does-not-call-set.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/map-no-iterable.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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.
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/map.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/name.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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 ] )
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/newtarget.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/Symbol.iterator.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/Symbol.toStringTag.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/clear/clear-map.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/clear/clear.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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 ( )
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/clear/length.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/clear/name.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/clear/returns-undefined.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/constructor.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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%.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/delete/delete.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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 ( )
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/delete/length.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/delete/name.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/delete/returns-false.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Map/prototype/descriptor.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (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: |
Expand Down
Loading

0 comments on commit 44b224d

Please sign in to comment.