mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
Add esid
This commit is contained in:
parent
461e84459b
commit
208344319e
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.1.1
|
||||
esid: sec-weakset-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.4.1
|
||||
esid: sec-weakset-constructor
|
||||
description: >
|
||||
The WeakSet constructor is the %WeakSet% intrinsic object and the initial
|
||||
value of the WeakSet property of the global object.
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.1.1
|
||||
esid: sec-weakset-iterable
|
||||
description: >
|
||||
If the iterable argument is empty, return new Weakset object.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.1.1
|
||||
esid: sec-weakset-iterable
|
||||
description: >
|
||||
Return abrupt after getting `add` method.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.1.1
|
||||
esid: sec-weakset-iterable
|
||||
description: >
|
||||
If the iterable argument is undefined, return new Weakset object.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.1.1
|
||||
esid: sec-weakset-iterable
|
||||
description: >
|
||||
Returns the new WeakSet 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.4.1.1
|
||||
esid: sec-weakset-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.4.1.1
|
||||
esid: sec-weakset-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.4.1.1
|
||||
esid: sec-weakset-iterable
|
||||
description: >
|
||||
If the iterable argument is empty, return new Weakset object.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.2
|
||||
esid: sec-properties-of-the-weakset-constructor
|
||||
description: >
|
||||
The length property of the WeakSet 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.4.1.1
|
||||
esid: sec-weakset-iterable
|
||||
description: >
|
||||
WeakSet ( [ iterable ] )
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.1.1
|
||||
esid: sec-weakset-iterable
|
||||
description: >
|
||||
If the iterable argument is undefined, return new Weakset object.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3
|
||||
esid: sec-properties-of-the-weakset-prototype-object
|
||||
description: >
|
||||
The WeakSet.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-weakset-iterable
|
||||
es6id: 23.4.1.1
|
||||
esid: sec-weakset-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.4.2
|
||||
esid: sec-properties-of-the-weakset-constructor
|
||||
description: >
|
||||
The value of the [[Prototype]] internal slot of the WeakSet 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.4.3.5
|
||||
esid: sec-weakset.prototype-@@tostringtag
|
||||
description: >
|
||||
`Symbol.toStringTag` property descriptor
|
||||
info: >
|
||||
|
1
test/built-ins/WeakSet/prototype/add/add.js
vendored
1
test/built-ins/WeakSet/prototype/add/add.js
vendored
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: WeakSet.prototype.add property descriptor
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
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.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: WeakSet.prototype.add.length descriptor
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
1
test/built-ins/WeakSet/prototype/add/name.js
vendored
1
test/built-ins/WeakSet/prototype/add/name.js
vendored
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: WeakSet.prototype.add.name descriptor
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: Returns `this` when new value is duplicate.
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: Returns `this` after adding a new value.
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.1
|
||||
esid: sec-weakset.prototype.add
|
||||
description: Throws TypeError if `value` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.add ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.2
|
||||
esid: sec-weakset.prototype.constructor
|
||||
description: >
|
||||
The initial value of WeakSet.prototype.constructor is the %WeakSet%
|
||||
intrinsic object.
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.2
|
||||
esid: sec-weakset.prototype.constructor
|
||||
description: >
|
||||
WeakSet.prototype.constructor property descriptor
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.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.4.3.3
|
||||
esid: sec-weakset.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.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
WeakSet.prototype.delete property descriptor
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
WeakSet.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.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
WeakSet.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.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
Return false if value is not a non-null Object.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: >
|
||||
Return false if entry wasn't in the WeakSet.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.delete ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.delete ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.delete ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.delete ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.delete ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.3
|
||||
esid: sec-weakset.prototype.delete
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.delete ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
Throws TypeError if context doesn't have a [[WeakSetData]] internal slot.
|
||||
info: >
|
||||
|
1
test/built-ins/WeakSet/prototype/has/has.js
vendored
1
test/built-ins/WeakSet/prototype/has/has.js
vendored
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
WeakSet.prototype.has property descriptor
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
WeakSet.prototype.has.length value and writability.
|
||||
info: >
|
||||
|
1
test/built-ins/WeakSet/prototype/has/name.js
vendored
1
test/built-ins/WeakSet/prototype/has/name.js
vendored
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
WeakSet.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.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
Returns false if value is not a non-null Object.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
Return false when value is not present in the WeakSet entries.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: >
|
||||
Returns true when value is present in the WeakSet entries list.
|
||||
info: >
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.has ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.has ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.has ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.has ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.has ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.3.4
|
||||
esid: sec-weakset.prototype.has
|
||||
description: Throws TypeError if `this` is not Object.
|
||||
info: >
|
||||
WeakSet.prototype.has ( value )
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.2.1
|
||||
esid: sec-weakset.prototype
|
||||
description: >
|
||||
WeakSet.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.4.3.1_S2
|
||||
esid: sec-weakset.prototype.add
|
||||
description: >
|
||||
Symbol may not be used as a WeakSet entry
|
||||
features: [WeakSet]
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.1.1
|
||||
esid: sec-weakset-iterable
|
||||
description: >
|
||||
The WeakSet constructor is the %WeakSet% intrinsic object and the initial
|
||||
value of the WeakSet property of the global object.
|
||||
|
@ -2,6 +2,7 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
es6id: 23.4.1.1
|
||||
esid: sec-weakset-iterable
|
||||
description: >
|
||||
WeakSet ( [ iterable ] )
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user