mirror of https://github.com/tc39/test262.git
31 lines
615 B
JavaScript
31 lines
615 B
JavaScript
// This file was procedurally generated from the following sources:
|
|
// - src/class-fields/grammar-fields-multi-line.case
|
|
// - src/class-fields/syntax/valid/cls-decl-fields-valid-syntax.template
|
|
/*---
|
|
description: Valid multi-line, multi-field (class declaration)
|
|
esid: prod-ClassElement
|
|
features: [class-fields-public, class]
|
|
flags: [generated]
|
|
info: |
|
|
|
|
ClassElement :
|
|
MethodDefinition
|
|
static MethodDefinition
|
|
FieldDefinition ;
|
|
;
|
|
|
|
FieldDefinition :
|
|
ClassElementName Initializer _opt
|
|
|
|
ClassElementName :
|
|
PropertyName
|
|
PrivateName
|
|
|
|
---*/
|
|
|
|
|
|
class C {
|
|
x
|
|
y
|
|
}
|