2017-05-02 21:09:33 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
|
|
|
// - src/generators/yield-as-binding-identifier-escaped.case
|
|
|
|
// - src/generators/syntax/class-expr-method.template
|
|
|
|
/*---
|
|
|
|
description: yield is a reserved keyword within generator function bodies and may not be used as a binding identifier. (Generator method as a ClassExpression element)
|
|
|
|
esid: prod-GeneratorMethod
|
|
|
|
flags: [generated]
|
|
|
|
negative:
|
|
|
|
phase: early
|
|
|
|
type: SyntaxError
|
|
|
|
info: |
|
|
|
|
ClassElement :
|
|
|
|
MethodDefinition
|
|
|
|
|
|
|
|
MethodDefinition :
|
|
|
|
GeneratorMethod
|
|
|
|
|
|
|
|
14.4 Generator Function Definitions
|
|
|
|
|
|
|
|
GeneratorMethod :
|
|
|
|
* PropertyName ( UniqueFormalParameters ) { GeneratorBody }
|
|
|
|
|
|
|
|
BindingIdentifier : Identifier
|
|
|
|
|
|
|
|
It is a Syntax Error if this production has a [Yield] parameter and
|
|
|
|
StringValue of Identifier is "yield".
|
|
|
|
|
|
|
|
---*/
|
2017-04-29 22:22:24 +02:00
|
|
|
throw "Test262: This statement should not be evaluated.";
|
2017-05-02 21:09:33 +02:00
|
|
|
|
|
|
|
var C = class {*gen() {
|
|
|
|
var yi\u0065ld;
|
|
|
|
}};
|