wrapped-in-sc-rs-private-setter-alt.js (2425B)
1 // This file was procedurally generated from the following sources: 2 // - src/class-elements/rs-private-setter-alt.case 3 // - src/class-elements/productions/cls-decl-wrapped-in-sc.template 4 /*--- 5 description: Valid PrivateName as private setter (fields definition wrapped in semicolons) 6 esid: prod-FieldDefinition 7 features: [class-methods-private, class-fields-private, class, class-fields-public] 8 flags: [generated] 9 info: | 10 ClassElement : 11 MethodDefinition 12 ... 13 ; 14 15 MethodDefinition : 16 ... 17 set ClassElementName ( PropertySetParameterList ) { FunctionBody } 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 NOTE 3 49 The sets of code points with Unicode properties "ID_Start" and 50 "ID_Continue" include, respectively, the code points with Unicode 51 properties "Other_ID_Start" and "Other_ID_Continue". 52 53 ---*/ 54 55 56 class C { 57 ;;;; 58 ;;;;;;#$_; #__; #\u{6F}_; #℘_; #ZW__NJ_; #ZW__J_; 59 set #$(value) { 60 this.#$_ = value; 61 } 62 set #_(value) { 63 this.#__ = value; 64 } 65 set #\u{6F}(value) { 66 this.#\u{6F}_ = value; 67 } 68 set #℘(value) { 69 this.#℘_ = value; 70 } 71 set #ZW__NJ(value) { 72 this.#ZW__NJ_ = value; 73 } 74 set #ZW__J(value) { 75 this.#ZW__J_ = value; 76 } 77 ;;;;;;; 78 ;;;; 79 $(value) { 80 this.#$ = value; 81 return this.#$_; 82 } 83 _(value) { 84 this.#_ = value; 85 return this.#__; 86 } 87 \u{6F}(value) { 88 this.#\u{6F} = value; 89 return this.#\u{6F}_; 90 } 91 ℘(value) { 92 this.#℘ = value; 93 return this.#℘_; 94 } 95 ZW__NJ(value) { 96 this.#ZW__NJ = value; 97 return this.#ZW__NJ_; 98 } 99 ZW__J(value) { 100 this.#ZW__J = value; 101 return this.#ZW__J_; 102 } 103 104 } 105 106 var c = new C(); 107 108 assert.sameValue(c.$(1), 1); 109 assert.sameValue(c._(1), 1); 110 assert.sameValue(c.\u{6F}(1), 1); 111 assert.sameValue(c.℘(1), 1); 112 assert.sameValue(c.ZW__NJ(1), 1); 113 assert.sameValue(c.ZW__J(1), 1); 114 115 reportCompare(0, 0);