mirror of
https://github.com/tc39/test262.git
synced 2025-07-27 07:54:41 +02:00
Generate tests
This commit is contained in:
parent
6330eccfc4
commit
f48a41caed
@ -5,6 +5,7 @@
|
|||||||
description: Object Spread operator results in error when there is an getter that throws an exception (Array initializer)
|
description: Object Spread operator results in error when there is an getter that throws an exception (Array initializer)
|
||||||
esid: sec-runtime-semantics-arrayaccumulation
|
esid: sec-runtime-semantics-arrayaccumulation
|
||||||
es6id: 12.2.5.2
|
es6id: 12.2.5.2
|
||||||
|
features: [object-spread]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
info: |
|
info: |
|
||||||
SpreadElement : ...AssignmentExpression
|
SpreadElement : ...AssignmentExpression
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
description: Object Spread operator results in error when using an unresolvable reference (Array initializer)
|
description: Object Spread operator results in error when using an unresolvable reference (Array initializer)
|
||||||
esid: sec-runtime-semantics-arrayaccumulation
|
esid: sec-runtime-semantics-arrayaccumulation
|
||||||
es6id: 12.2.5.2
|
es6id: 12.2.5.2
|
||||||
|
features: [object-spread]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
info: |
|
info: |
|
||||||
SpreadElement : ...AssignmentExpression
|
SpreadElement : ...AssignmentExpression
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (async generator function expression (default parameter))
|
description: Getter is called when obj is being deconstructed to a rest Object (async generator function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator function expression (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) {
|
AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator function expression (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (async generator function expression (default parameter))
|
description: Rest object contains just soruce object's own properties (async generator function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (async generator function expression (default parameter))
|
description: Rest object doesn't contain non-enumerable properties (async generator function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (async generator function expression (default parameter))
|
description: Rest object contains just unextracted data (async generator function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (async generator named function expression (default parameter))
|
description: Getter is called when obj is being deconstructed to a rest Object (async generator named function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator named function expression (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator named function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier
|
AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator named function expression (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator named function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (async generator named function expression (default parameter))
|
description: Rest object contains just soruce object's own properties (async generator named function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (async generator named function expression (default parameter))
|
description: Rest object doesn't contain non-enumerable properties (async generator named function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (async generator named function expression (default parameter))
|
description: Rest object contains just unextracted data (async generator named function expression (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (async generator named function expression)
|
description: Getter is called when obj is being deconstructed to a rest Object (async generator named function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator named function expression)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator named function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier
|
AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator named function expression)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator named function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (async generator named function expression)
|
description: Rest object contains just soruce object's own properties (async generator named function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (async generator named function expression)
|
description: Rest object doesn't contain non-enumerable properties (async generator named function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (async generator named function expression)
|
description: Rest object contains just unextracted data (async generator named function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (async generator function expression)
|
description: Getter is called when obj is being deconstructed to a rest Object (async generator function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator function expression)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) {
|
AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator function expression)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (async generator function expression)
|
description: Rest object contains just soruce object's own properties (async generator function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (async generator function expression)
|
description: Rest object doesn't contain non-enumerable properties (async generator function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (async generator function expression)
|
description: Rest object contains just unextracted data (async generator function expression)
|
||||||
esid: sec-asyncgenerator-definitions-evaluation
|
esid: sec-asyncgenerator-definitions-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
description: Object Spread operator results in error when there is an getter that throws an exception (CallExpression)
|
description: Object Spread operator results in error when there is an getter that throws an exception (CallExpression)
|
||||||
esid: sec-function-calls-runtime-semantics-evaluation
|
esid: sec-function-calls-runtime-semantics-evaluation
|
||||||
es6id: 12.3.4.1
|
es6id: 12.3.4.1
|
||||||
|
features: [object-spread]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
info: |
|
info: |
|
||||||
CallExpression : MemberExpression Arguments
|
CallExpression : MemberExpression Arguments
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
description: Object Spread operator results in error when using an unresolvable reference (CallExpression)
|
description: Object Spread operator results in error when using an unresolvable reference (CallExpression)
|
||||||
esid: sec-function-calls-runtime-semantics-evaluation
|
esid: sec-function-calls-runtime-semantics-evaluation
|
||||||
es6id: 12.3.4.1
|
es6id: 12.3.4.1
|
||||||
|
features: [object-spread]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
info: |
|
info: |
|
||||||
CallExpression : MemberExpression Arguments
|
CallExpression : MemberExpression Arguments
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (class expression async generator method (default parameter))
|
description: Getter is called when obj is being deconstructed to a rest Object (class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (class expression async generator method (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
ClassExpression : class BindingIdentifieropt ClassTail
|
ClassExpression : class BindingIdentifieropt ClassTail
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (class expression async generator method (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (class expression async generator method (default parameter))
|
description: Rest object contains just soruce object's own properties (class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (class expression async generator method (default parameter))
|
description: Rest object doesn't contain non-enumerable properties (class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (class expression async generator method (default parameter))
|
description: Rest object contains just unextracted data (class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (class expression method)
|
description: Getter is called when obj is being deconstructed to a rest Object (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (class expression method)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
ClassExpression : class BindingIdentifieropt ClassTail
|
ClassExpression : class BindingIdentifieropt ClassTail
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (class expression method)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (class expression method)
|
description: Rest object contains just soruce object's own properties (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (class expression method)
|
description: Rest object doesn't contain non-enumerable properties (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (class expression method)
|
description: Rest object contains just unextracted data (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (static class expression async generator method (default parameter))
|
description: Getter is called when obj is being deconstructed to a rest Object (static class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (static class expression async generator method (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (static class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
ClassExpression : class BindingIdentifieropt ClassTail
|
ClassExpression : class BindingIdentifieropt ClassTail
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (static class expression async generator method (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (static class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (static class expression async generator method (default parameter))
|
description: Rest object contains just soruce object's own properties (static class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (static class expression async generator method (default parameter))
|
description: Rest object doesn't contain non-enumerable properties (static class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (static class expression async generator method (default parameter))
|
description: Rest object contains just unextracted data (static class expression async generator method (default parameter))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (static class expression async generator method)
|
description: Getter is called when obj is being deconstructed to a rest Object (static class expression async generator method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (static class expression async generator method)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (static class expression async generator method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
ClassExpression : class BindingIdentifieropt ClassTail
|
ClassExpression : class BindingIdentifieropt ClassTail
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (static class expression async generator method)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (static class expression async generator method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (static class expression async generator method)
|
description: Rest object contains just soruce object's own properties (static class expression async generator method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (static class expression async generator method)
|
description: Rest object doesn't contain non-enumerable properties (static class expression async generator method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (static class expression async generator method)
|
description: Rest object contains just unextracted data (static class expression async generator method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
description: Object Spread operator results in error when there is an getter that throws an exception (`new` operator)
|
description: Object Spread operator results in error when there is an getter that throws an exception (`new` operator)
|
||||||
esid: sec-new-operator-runtime-semantics-evaluation
|
esid: sec-new-operator-runtime-semantics-evaluation
|
||||||
es6id: 12.3.3.1
|
es6id: 12.3.3.1
|
||||||
|
features: [object-spread]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
info: |
|
info: |
|
||||||
MemberExpression : new MemberExpression Arguments
|
MemberExpression : new MemberExpression Arguments
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
description: Object Spread operator results in error when using an unresolvable reference (`new` operator)
|
description: Object Spread operator results in error when using an unresolvable reference (`new` operator)
|
||||||
esid: sec-new-operator-runtime-semantics-evaluation
|
esid: sec-new-operator-runtime-semantics-evaluation
|
||||||
es6id: 12.3.3.1
|
es6id: 12.3.3.1
|
||||||
|
features: [object-spread]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
info: |
|
info: |
|
||||||
MemberExpression : new MemberExpression Arguments
|
MemberExpression : new MemberExpression Arguments
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (async generator method (default parameter))
|
description: Getter is called when obj is being deconstructed to a rest Object (async generator method (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator method (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator method (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
AsyncGeneratorMethod :
|
AsyncGeneratorMethod :
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator method (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator method (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (async generator method (default parameter))
|
description: Rest object contains just soruce object's own properties (async generator method (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (async generator method (default parameter))
|
description: Rest object doesn't contain non-enumerable properties (async generator method (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (async generator method (default parameter))
|
description: Rest object contains just unextracted data (async generator method (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (async generator method)
|
description: Getter is called when obj is being deconstructed to a rest Object (async generator method)
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator method)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator method)
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
AsyncGeneratorMethod :
|
AsyncGeneratorMethod :
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator method)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator method)
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (async generator method)
|
description: Rest object contains just soruce object's own properties (async generator method)
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (async generator method)
|
description: Rest object doesn't contain non-enumerable properties (async generator method)
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (async generator method)
|
description: Rest object contains just unextracted data (async generator method)
|
||||||
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
esid: sec-asyncgenerator-definitions-propertydefinitionevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
description: Object Spread operator results in error when there is an getter that throws an exception (SuperCall)
|
description: Object Spread operator results in error when there is an getter that throws an exception (SuperCall)
|
||||||
esid: sec-super-keyword-runtime-semantics-evaluation
|
esid: sec-super-keyword-runtime-semantics-evaluation
|
||||||
es6id: 12.3.5.1
|
es6id: 12.3.5.1
|
||||||
|
features: [object-spread]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
info: |
|
info: |
|
||||||
SuperCall : super Arguments
|
SuperCall : super Arguments
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
description: Object Spread operator results in error when using an unresolvable reference (SuperCall)
|
description: Object Spread operator results in error when using an unresolvable reference (SuperCall)
|
||||||
esid: sec-super-keyword-runtime-semantics-evaluation
|
esid: sec-super-keyword-runtime-semantics-evaluation
|
||||||
es6id: 12.3.5.1
|
es6id: 12.3.5.1
|
||||||
|
features: [object-spread]
|
||||||
flags: [generated]
|
flags: [generated]
|
||||||
info: |
|
info: |
|
||||||
SuperCall : super Arguments
|
SuperCall : super Arguments
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (async generator function declaration (default parameter))
|
description: Getter is called when obj is being deconstructed to a rest Object (async generator function declaration (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator function declaration (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator function declaration (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
AsyncGeneratorDeclaration : async [no LineTerminator here] function * BindingIdentifier
|
AsyncGeneratorDeclaration : async [no LineTerminator here] function * BindingIdentifier
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator function declaration (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator function declaration (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (async generator function declaration (default parameter))
|
description: Rest object contains just soruce object's own properties (async generator function declaration (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (async generator function declaration (default parameter))
|
description: Rest object doesn't contain non-enumerable properties (async generator function declaration (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (async generator function declaration (default parameter))
|
description: Rest object contains just unextracted data (async generator function declaration (default parameter))
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (async generator function declaration)
|
description: Getter is called when obj is being deconstructed to a rest Object (async generator function declaration)
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator function declaration)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (async generator function declaration)
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
AsyncGeneratorDeclaration : async [no LineTerminator here] function * BindingIdentifier
|
AsyncGeneratorDeclaration : async [no LineTerminator here] function * BindingIdentifier
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator function declaration)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator function declaration)
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (async generator function declaration)
|
description: Rest object contains just soruce object's own properties (async generator function declaration)
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (async generator function declaration)
|
description: Rest object doesn't contain non-enumerable properties (async generator function declaration)
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (async generator function declaration)
|
description: Rest object contains just unextracted data (async generator function declaration)
|
||||||
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
esid: sec-asyncgenerator-definitions-instantiatefunctionobject
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (class expression async generator method (default parameters))
|
description: Getter is called when obj is being deconstructed to a rest Object (class expression async generator method (default parameters))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (class expression async generator method (default parameters))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (class expression async generator method (default parameters))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
ClassDeclaration : class BindingIdentifier ClassTail
|
ClassDeclaration : class BindingIdentifier ClassTail
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (class expression async generator method (default parameters))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (class expression async generator method (default parameters))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (class expression async generator method (default parameters))
|
description: Rest object contains just soruce object's own properties (class expression async generator method (default parameters))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (class expression async generator method (default parameters))
|
description: Rest object doesn't contain non-enumerable properties (class expression async generator method (default parameters))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (class expression async generator method (default parameters))
|
description: Rest object contains just unextracted data (class expression async generator method (default parameters))
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (class expression method)
|
description: Getter is called when obj is being deconstructed to a rest Object (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (class expression method)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
ClassDeclaration : class BindingIdentifier ClassTail
|
ClassDeclaration : class BindingIdentifier ClassTail
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (class expression method)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (class expression method)
|
description: Rest object contains just soruce object's own properties (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (class expression method)
|
description: Rest object doesn't contain non-enumerable properties (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (class expression method)
|
description: Rest object contains just unextracted data (class expression method)
|
||||||
esid: sec-class-definitions-runtime-semantics-evaluation
|
esid: sec-class-definitions-runtime-semantics-evaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (static class expression async generator method (default parameter))
|
description: Getter is called when obj is being deconstructed to a rest Object (static class expression async generator method (default parameter))
|
||||||
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (static class expression async generator method (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (static class expression async generator method (default parameter))
|
||||||
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
ClassDeclaration : class BindingIdentifier ClassTail
|
ClassDeclaration : class BindingIdentifier ClassTail
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (static class expression async generator method (default parameter))
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (static class expression async generator method (default parameter))
|
||||||
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just soruce object's own properties (static class expression async generator method (default parameter))
|
description: Rest object contains just soruce object's own properties (static class expression async generator method (default parameter))
|
||||||
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object doesn't contain non-enumerable properties (static class expression async generator method (default parameter))
|
description: Rest object doesn't contain non-enumerable properties (static class expression async generator method (default parameter))
|
||||||
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Rest object contains just unextracted data (static class expression async generator method (default parameter))
|
description: Rest object contains just unextracted data (static class expression async generator method (default parameter))
|
||||||
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: Getter is called when obj is being deconstructed to a rest Object (static class expression async generator method)
|
description: Getter is called when obj is being deconstructed to a rest Object (static class expression async generator method)
|
||||||
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
info: |
|
info: |
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/*---
|
/*---
|
||||||
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (static class expression async generator method)
|
description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment. (static class expression async generator method)
|
||||||
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
esid: sec-runtime-semantics-bindingclassdeclarationevaluation
|
||||||
features: [async-iteration]
|
features: [object-rest, async-iteration]
|
||||||
flags: [generated, async]
|
flags: [generated, async]
|
||||||
info: |
|
info: |
|
||||||
ClassDeclaration : class BindingIdentifier ClassTail
|
ClassDeclaration : class BindingIdentifier ClassTail
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user