2017-05-02 21:09:33 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
|
|
|
// - src/async-generators/yield-as-identifier-reference.case
|
|
|
|
// - src/async-generators/syntax/async-obj-method.template
|
|
|
|
/*---
|
|
|
|
description: yield is a reserved keyword within generator function bodies and may not be used as an identifier reference. (Async generator method)
|
|
|
|
esid: prod-AsyncGeneratorMethod
|
|
|
|
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
|
|
|
|
|
|
|
|
AsyncGeneratorMethod :
|
|
|
|
async [no LineTerminator here] * PropertyName ( UniqueFormalParameters ) { AsyncGeneratorBody }
|
|
|
|
|
|
|
|
|
|
|
|
IdentifierReference : 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 obj = {
|
|
|
|
async *method() {
|
|
|
|
void yield;
|
|
|
|
}
|
|
|
|
};
|