grammar-privatename-identifier.js (1411B)
1 // This file was procedurally generated from the following sources: 2 // - src/class-elements/grammar-privatename-identifier.case 3 // - src/class-elements/syntax/valid/cls-expr-elements-valid-syntax.template 4 /*--- 5 description: Valid PrivateName Syntax (class expression) 6 esid: prod-ClassElement 7 features: [class-fields-private, class] 8 flags: [generated] 9 info: | 10 ClassElement : 11 MethodDefinition 12 static MethodDefinition 13 FieldDefinition ; 14 ; 15 16 FieldDefinition : 17 ClassElementName Initializer _opt 18 19 ClassElementName : 20 PropertyName 21 PrivateName 22 23 PrivateName :: 24 # IdentifierName 25 26 IdentifierName :: 27 IdentifierStart 28 IdentifierName IdentifierPart 29 30 IdentifierStart :: 31 UnicodeIDStart 32 $ 33 _ 34 \ UnicodeEscapeSequence 35 36 IdentifierPart:: 37 UnicodeIDContinue 38 $ 39 \ UnicodeEscapeSequence 40 <ZWNJ> <ZWJ> 41 42 UnicodeIDStart:: 43 any Unicode code point with the Unicode property "ID_Start" 44 45 UnicodeIDContinue:: 46 any Unicode code point with the Unicode property "ID_Continue" 47 48 49 NOTE 3 50 The sets of code points with Unicode properties "ID_Start" and 51 "ID_Continue" include, respectively, the code points with Unicode 52 properties "Other_ID_Start" and "Other_ID_Continue". 53 54 ---*/ 55 56 57 var C = class { 58 #$; 59 #_; 60 #\u{6F}; 61 #\u2118; 62 #ZW_\u200C_NJ; 63 #ZW_\u200D_J; 64 }; 65 66 reportCompare(0, 0);