mirror of https://github.com/tc39/test262.git
28 lines
764 B
JavaScript
28 lines
764 B
JavaScript
|
// This file was procedurally generated from the following sources:
|
||
|
// - src/class-elements/grammar-special-meth-contains-super-async-gen.case
|
||
|
// - src/class-elements/syntax/invalid/cls-decl-elements-invalid-syntax.template
|
||
|
/*---
|
||
|
description: Async Generator Methods cannot contain direct super (class declaration)
|
||
|
esid: prod-ClassElement
|
||
|
features: [async-iteration, class]
|
||
|
flags: [generated]
|
||
|
negative:
|
||
|
phase: parse
|
||
|
type: SyntaxError
|
||
|
info: |
|
||
|
Class Definitions / Static Semantics: Early Errors
|
||
|
|
||
|
ClassElement : MethodDefinition
|
||
|
It is a Syntax Error if PropName of MethodDefinition is not "constructor" and HasDirectSuper of MethodDefinition is true.
|
||
|
|
||
|
---*/
|
||
|
|
||
|
|
||
|
$DONOTEVALUATE();
|
||
|
|
||
|
class C extends Function{
|
||
|
async * method() {
|
||
|
super();
|
||
|
}
|
||
|
}
|