mirror of https://github.com/tc39/test262.git
Add `esid` to built-ins/WeakMap (#1119)
This commit is contained in:
parent
73ec5e6cd9
commit
518df03a59
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1
|
||||
esid: sec-weakmap-constructor
|
||||
description: >
|
||||
The WeakMap constructor is the %WeakMap% intrinsic object and the initial
|
||||
value of the WeakMap property of the global object.
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
If the iterable argument is empty, return new WeakMap object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Return abrupt after getting `set` method.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
If the iterable argument is undefined, return new WeakMap object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Returns the new WeakMap adding the objects from the iterable parameter.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Return IteratorClose(iter, status) if fail on adding value on constructing.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Closes iterator if item first entry completes abruptly.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Closes iterator if item second entry completes abruptly.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Closes the iterator object after not object error on next item.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Throws a TypeError if iterable itens are not Objects.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Return abrupt from next iterator step.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
If the iterable argument is empty, return new WeakMap object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.2
|
||||
esid: sec-properties-of-the-weakmap-constructor
|
||||
description: >
|
||||
The length property of the WeakMap constructor is 0.
|
||||
includes: [propertyHelper.js]
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
WeakMap ( [ iterable ] )
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
If the iterable argument is undefined, return new WeakMap object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.4
|
||||
esid: sec-properties-of-weakmap-instances
|
||||
description: >
|
||||
WeakMap instances are ordinary objects that inherit properties from the
|
||||
WeakMap prototype.
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3
|
||||
esid: sec-properties-of-the-weakmap-prototype-object
|
||||
description: >
|
||||
The WeakMap.prototype's prototype is Object.prototype.
|
||||
info: >
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-weakmap-iterable
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: Default [[Prototype]] value derived from realm of the newTarget
|
||||
info: |
|
||||
[...]
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.2
|
||||
esid: sec-properties-of-the-weakmap-constructor
|
||||
description: >
|
||||
The value of the [[Prototype]] internal slot of the WeakMap constructor is the
|
||||
intrinsic object %FunctionPrototype% (19.2.3).
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.6
|
||||
esid: sec-weakmap.prototype-@@tostringtag
|
||||
description: >
|
||||
`Symbol.toStringTag` property descriptor
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.1
|
||||
esid: sec-weakmap.prototype.constructor
|
||||
description: >
|
||||
WeakMap.prototype.constructor value and property descriptor
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
Delete an entry from initial iterable.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
Delete an entry.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
WeakMap.prototype.delete property descriptor
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
WeakMap.prototype.delete.length value and writability.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
WeakMap.prototype.delete.name value and writability.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
Return false if value is not an Object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: >
|
||||
Return false if entry is not in the WeakMap.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.delete ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.delete ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.delete ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.delete ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.delete ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.2
|
||||
esid: sec-weakmap.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.delete ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
Throws a TypeError if `this` is a Map object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
Throws a TypeError if `this` is a Set object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
Throws a TypeError if `this` does not have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
Property type and descriptor.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
WeakMap.prototype.get.length value and descriptor.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
WeakMap.prototype.get.name value and descriptor.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
Returns undefined when key is not an Object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
Returns undefined when key is not on the WeakMap object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
Returns the value from the specified key
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.3
|
||||
esid: sec-weakmap.prototype.get
|
||||
description: >
|
||||
Throws a TypeError if `this` value is not an Object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
WeakMap.prototype.has property descriptor
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
WeakMap.prototype.has.length value and writability.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
WeakMap.prototype.has.name value and writability.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
Returns false if value is not an Object.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
Return false when value is not present in the WeakMap entries.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: >
|
||||
Returns true when value is present in the WeakMap entries list.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.has ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.has ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.has ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.has ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.has ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.4
|
||||
esid: sec-weakmap.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.has ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.2.1
|
||||
esid: sec-weakmap.prototype
|
||||
description: >
|
||||
WeakMap.prototype is not writable, not enumerable and not configurable.
|
||||
includes: [propertyHelper.js]
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: >
|
||||
Appends value as the last element of entries.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: >
|
||||
Throws TypeError if `this` doesn't have a [[WeakMapData]] internal slot.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: Throws TypeError if `key` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: WeakMap.prototype.set.length descriptor
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: WeakMap.prototype.set.name descriptor
|
||||
info: >
|
||||
WeakMap.prototype.set ( value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: Returns `this` when new value is duplicate.
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: Returns `this` after setting a new value.
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: WeakMap.prototype.set property descriptor
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.3.5
|
||||
esid: sec-weakmap.prototype.set
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakMap.prototype.set ( key, value )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Throws TypeError if add is not callable on constructor call.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
Throws a TypeError if NewTarget is undefined.
|
||||
info: >
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.3.1.1
|
||||
esid: sec-weakmap-iterable
|
||||
description: >
|
||||
WeakMap ( [ iterable ] )
|
||||
|
||||
|
|
Loading…
Reference in New Issue