mirror of https://github.com/tc39/test262.git
27 lines
450 B
Plaintext
27 lines
450 B
Plaintext
|
// Copyright (C) 2018 Rick Waldron. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
desc: SyntaxError
|
||
|
info: |
|
||
|
|
||
|
ClassElement :
|
||
|
MethodDefinition
|
||
|
static MethodDefinition
|
||
|
FieldDefinition ;
|
||
|
;
|
||
|
|
||
|
FieldDefinition :
|
||
|
ClassElementName Initializer _opt
|
||
|
|
||
|
ClassElementName :
|
||
|
PropertyName
|
||
|
PrivateName
|
||
|
|
||
|
template: syntax/invalid
|
||
|
features: [class-fields-public]
|
||
|
---*/
|
||
|
|
||
|
//- fields
|
||
|
x y
|