2017-05-02 21:09:33 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
|
|
|
// - src/async-generators/yield-as-binding-identifier.case
|
|
|
|
// - src/async-generators/syntax/async-expression.template
|
|
|
|
/*---
|
|
|
|
description: yield is a reserved keyword within generator function bodies and may not be used as a binding identifier. (Unnamed async generator expression)
|
|
|
|
esid: prod-AsyncGeneratorExpression
|
|
|
|
features: [async-iteration]
|
|
|
|
flags: [generated]
|
|
|
|
negative:
|
2017-12-03 06:06:42 +01:00
|
|
|
phase: parse
|
2017-05-02 21:09:33 +02:00
|
|
|
type: SyntaxError
|
|
|
|
info: |
|
|
|
|
Async Generator Function Definitions
|
|
|
|
|
|
|
|
AsyncGeneratorExpression :
|
|
|
|
async [no LineTerminator here] function * BindingIdentifier ( FormalParameters ) {
|
|
|
|
AsyncGeneratorBody }
|
|
|
|
|
|
|
|
|
|
|
|
BindingIdentifier : Identifier
|
|
|
|
|
|
|
|
It is a Syntax Error if this production has a [Yield] parameter and
|
|
|
|
StringValue of Identifier is "yield".
|
|
|
|
|
|
|
|
---*/
|
2018-10-11 16:59:24 +02:00
|
|
|
$DONOTEVALUATE();
|
2017-05-02 21:09:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
var gen = async function *() {
|
|
|
|
var yield;
|
|
|
|
};
|