mirror of https://github.com/tc39/test262.git
21 lines
425 B
Plaintext
21 lines
425 B
Plaintext
// Copyright (C) 2018 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
desc: No space allowed between sigil and IdentifierName (Static Field)
|
|
info: |
|
|
Updated Productions
|
|
|
|
ClassElementName :
|
|
PropertyName
|
|
PrivateName
|
|
|
|
PrivateName ::
|
|
# IdentifierName
|
|
template: syntax/invalid
|
|
features: [class-static-fields-private]
|
|
---*/
|
|
|
|
//- elements
|
|
static # x;
|