Re-generate tests

This commit is contained in:
Leo Balter 2017-09-07 18:07:44 -04:00 committed by Rick Waldron
parent cf68ab3e5e
commit 9f526c0bcd
548 changed files with 672 additions and 548 deletions

View File

@ -5,7 +5,7 @@
description: Error forwarding when IteratorStep returns an abrupt completion (arrow function expression)
esid: sec-arrow-function-definitions-runtime-semantics-evaluation
es6id: 14.2.16
features: [destructuring-binding]
features: [Symbol.iterator, destructuring-binding]
flags: [generated]
info: |
ArrowFunction : ArrowParameters => ConciseBody
@ -46,6 +46,7 @@ info: |
a. Let next be IteratorStep(iteratorRecord.[[iterator]]).
b. If next is an abrupt completion, set iteratorRecord.[[done]] to true.
c. ReturnIfAbrupt(next).
---*/
var g = {};
g[Symbol.iterator] = function() {

View File

@ -5,7 +5,7 @@
description: Error forwarding when IteratorValue returns an abrupt completion (arrow function expression)
esid: sec-arrow-function-definitions-runtime-semantics-evaluation
es6id: 14.2.16
features: [destructuring-binding]
features: [Symbol.iterator, destructuring-binding]
flags: [generated]
info: |
ArrowFunction : ArrowParameters => ConciseBody
@ -52,6 +52,7 @@ info: |
ii. If v is an abrupt completion, set iteratorRecord.[[done]] to
true.
iii. ReturnIfAbrupt(v).
---*/
var poisonedValue = Object.defineProperty({}, 'value', {
get: function() {

View File

@ -5,7 +5,7 @@
description: Error forwarding when IteratorStep returns an abrupt completion (arrow function expression (default parameter))
esid: sec-arrow-function-definitions-runtime-semantics-evaluation
es6id: 14.2.16
features: [destructuring-binding, default-parameters]
features: [Symbol.iterator, destructuring-binding, default-parameters]
flags: [generated]
info: |
ArrowFunction : ArrowParameters => ConciseBody
@ -46,6 +46,7 @@ info: |
a. Let next be IteratorStep(iteratorRecord.[[iterator]]).
b. If next is an abrupt completion, set iteratorRecord.[[done]] to true.
c. ReturnIfAbrupt(next).
---*/
var g = {};
g[Symbol.iterator] = function() {

View File

@ -5,7 +5,7 @@
description: Error forwarding when IteratorValue returns an abrupt completion (arrow function expression (default parameter))
esid: sec-arrow-function-definitions-runtime-semantics-evaluation
es6id: 14.2.16
features: [destructuring-binding, default-parameters]
features: [Symbol.iterator, destructuring-binding, default-parameters]
flags: [generated]
info: |
ArrowFunction : ArrowParameters => ConciseBody
@ -52,6 +52,7 @@ info: |
ii. If v is an abrupt completion, set iteratorRecord.[[done]] to
true.
iii. ReturnIfAbrupt(v).
---*/
var poisonedValue = Object.defineProperty({}, 'value', {
get: function() {

View File

@ -4,7 +4,7 @@
/*---
description: Error forwarding when IteratorStep returns an abrupt completion (async generator function expression)
esid: sec-asyncgenerator-definitions-evaluation
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated]
info: |
AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) {
@ -24,6 +24,7 @@ info: |
a. Let next be IteratorStep(iteratorRecord.[[iterator]]).
b. If next is an abrupt completion, set iteratorRecord.[[done]] to true.
c. ReturnIfAbrupt(next).
---*/
var g = {};
g[Symbol.iterator] = function() {

View File

@ -4,7 +4,7 @@
/*---
description: Error forwarding when IteratorValue returns an abrupt completion (async generator function expression)
esid: sec-asyncgenerator-definitions-evaluation
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated]
info: |
AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) {
@ -30,6 +30,7 @@ info: |
ii. If v is an abrupt completion, set iteratorRecord.[[done]] to
true.
iii. ReturnIfAbrupt(v).
---*/
var poisonedValue = Object.defineProperty({}, 'value', {
get: function() {

View File

@ -4,7 +4,7 @@
/*---
description: Error forwarding when IteratorStep returns an abrupt completion (async generator function expression (default parameter))
esid: sec-asyncgenerator-definitions-evaluation
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated]
info: |
AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) {
@ -24,6 +24,7 @@ info: |
a. Let next be IteratorStep(iteratorRecord.[[iterator]]).
b. If next is an abrupt completion, set iteratorRecord.[[done]] to true.
c. ReturnIfAbrupt(next).
---*/
var g = {};
g[Symbol.iterator] = function() {

View File

@ -4,7 +4,7 @@
/*---
description: Error forwarding when IteratorValue returns an abrupt completion (async generator function expression (default parameter))
esid: sec-asyncgenerator-definitions-evaluation
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated]
info: |
AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) {
@ -30,6 +30,7 @@ info: |
ii. If v is an abrupt completion, set iteratorRecord.[[done]] to
true.
iii. ReturnIfAbrupt(v).
---*/
var poisonedValue = Object.defineProperty({}, 'value', {
get: function() {

View File

@ -4,7 +4,7 @@
/*---
description: Error forwarding when IteratorStep returns an abrupt completion (async generator named function expression)
esid: sec-asyncgenerator-definitions-evaluation
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated]
info: |
AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier
@ -24,6 +24,7 @@ info: |
a. Let next be IteratorStep(iteratorRecord.[[iterator]]).
b. If next is an abrupt completion, set iteratorRecord.[[done]] to true.
c. ReturnIfAbrupt(next).
---*/
var g = {};
g[Symbol.iterator] = function() {

View File

@ -4,7 +4,7 @@
/*---
description: Error forwarding when IteratorValue returns an abrupt completion (async generator named function expression)
esid: sec-asyncgenerator-definitions-evaluation
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated]
info: |
AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier
@ -30,6 +30,7 @@ info: |
ii. If v is an abrupt completion, set iteratorRecord.[[done]] to
true.
iii. ReturnIfAbrupt(v).
---*/
var poisonedValue = Object.defineProperty({}, 'value', {
get: function() {

View File

@ -4,7 +4,7 @@
/*---
description: Error forwarding when IteratorStep returns an abrupt completion (async generator named function expression (default parameter))
esid: sec-asyncgenerator-definitions-evaluation
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated]
info: |
AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier
@ -24,6 +24,7 @@ info: |
a. Let next be IteratorStep(iteratorRecord.[[iterator]]).
b. If next is an abrupt completion, set iteratorRecord.[[done]] to true.
c. ReturnIfAbrupt(next).
---*/
var g = {};
g[Symbol.iterator] = function() {

View File

@ -4,7 +4,7 @@
/*---
description: Error forwarding when IteratorValue returns an abrupt completion (async generator named function expression (default parameter))
esid: sec-asyncgenerator-definitions-evaluation
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated]
info: |
AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier
@ -30,6 +30,7 @@ info: |
ii. If v is an abrupt completion, set iteratorRecord.[[done]] to
true.
iii. ReturnIfAbrupt(v).
---*/
var poisonedValue = Object.defineProperty({}, 'value', {
get: function() {

View File

@ -4,7 +4,7 @@
/*---
description: Execution order for yield* with async iterator and next() (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration, Symbol.asyncIterator]
features: [Symbol.iterator, async-iteration, Symbol.asyncIterator]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting [Symbol.asyncIterator] (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (boolean) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (number) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (object) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (string) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (symbol) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting @@iterator after null @@asyncIterator (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while calling [Symbol.asyncIterator] (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - boolean (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - null (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - number (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - string (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - symbol (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - undefined (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting @@iterator after undefined @@asyncIterator (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting [Symbol.iterator] (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (boolean) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (number) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (object) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (string) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (symbol) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while calling [Symbol.iterator] (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - boolean (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - null (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - number (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - string (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - symbol (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - undefined (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting done (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while calling next (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting value (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting next (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: If next() value is not-object, do not access respective then property (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Not-callable next value in a yield star position - boolean (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Not-callable next value in a yield star position - null (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Not-callable next value in a yield star position - number (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Not-callable next value in a yield star position - object (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Not-callable next value in a yield star position - string (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Not-callable next value in a yield star position - symbol (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Not-callable next value in a yield star position - undefined (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Return abrupt after getting next().then (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: FulfillPromise if next().then is not-callable (boolean) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: FulfillPromise if next().then is not-callable (null) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: FulfillPromise if next().then is not-callable (number) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: FulfillPromise if next().then is not-callable (object) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: FulfillPromise if next().then is not-callable (string) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: FulfillPromise if next().then is not-callable (symbol) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: FulfillPromise if next().then is not-callable (undefined) (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Return abrupt after calling next().then (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: execution order for yield* with sync iterator and next() (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration, Symbol.asyncIterator]
features: [Symbol.iterator, async-iteration, Symbol.asyncIterator]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: execution order for yield* with sync iterator and return() (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration, Symbol.asyncIterator]
features: [Symbol.iterator, async-iteration, Symbol.asyncIterator]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: execution order for yield* with sync iterator and throw() (Named async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Execution order for yield* with async iterator and next() (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration, Symbol.asyncIterator]
features: [Symbol.iterator, async-iteration, Symbol.asyncIterator]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting [Symbol.asyncIterator] (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (boolean) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (number) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (object) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (string) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.asyncIterator] (symbol) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting @@iterator after null @@asyncIterator (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while calling [Symbol.asyncIterator] (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - boolean (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - null (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - number (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - string (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - symbol (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.asyncIterator]() - undefined (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting @@iterator after undefined @@asyncIterator (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting [Symbol.iterator] (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (boolean) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (number) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (object) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (string) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Throws a TypeError on a non-callable [Symbol.iterator] (symbol) (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while calling [Symbol.iterator] (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - boolean (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - null (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - number (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - string (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - symbol (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Non object returned by [Symbol.iterator]() - undefined (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [async-iteration]
features: [Symbol.iterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting done (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while calling next (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting value (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Abrupt completion while getting next (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: If next() value is not-object, do not access respective then property (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

View File

@ -4,7 +4,7 @@
/*---
description: Not-callable next value in a yield star position - boolean (Unnamed async generator expression)
esid: prod-AsyncGeneratorExpression
features: [Symbol.asyncIterator, async-iteration]
features: [Symbol.iterator, Symbol.asyncIterator, async-iteration]
flags: [generated, async]
info: |
Async Generator Function Definitions

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