after-same-line-static-async-gen-rs-privatename-identifier-initializer.js (2796B)
1 // |reftest| async 2 // This file was procedurally generated from the following sources: 3 // - src/class-elements/rs-privatename-identifier-initializer.case 4 // - src/class-elements/productions/cls-decl-after-same-line-static-async-gen.template 5 /*--- 6 description: Valid PrivateName (field definitions after a static async generator in the same line) 7 esid: prod-FieldDefinition 8 features: [class-fields-private, class, class-fields-public, async-iteration] 9 flags: [generated, async] 10 includes: [propertyHelper.js] 11 info: | 12 ClassElement : 13 MethodDefinition 14 static MethodDefinition 15 FieldDefinition ; 16 ; 17 18 FieldDefinition : 19 ClassElementName Initializer _opt 20 21 ClassElementName : 22 PropertyName 23 PrivateName 24 25 PrivateName :: 26 # IdentifierName 27 28 IdentifierName :: 29 IdentifierStart 30 IdentifierName IdentifierPart 31 32 IdentifierStart :: 33 UnicodeIDStart 34 $ 35 _ 36 \ UnicodeEscapeSequence 37 38 IdentifierPart:: 39 UnicodeIDContinue 40 $ 41 \ UnicodeEscapeSequence 42 <ZWNJ> <ZWJ> 43 44 UnicodeIDStart:: 45 any Unicode code point with the Unicode property "ID_Start" 46 47 UnicodeIDContinue:: 48 any Unicode code point with the Unicode property "ID_Continue" 49 50 51 NOTE 3 52 The sets of code points with Unicode properties "ID_Start" and 53 "ID_Continue" include, respectively, the code points with Unicode 54 properties "Other_ID_Start" and "Other_ID_Continue". 55 56 ---*/ 57 58 59 class C { 60 static async *m() { return 42; } #$ = 1; #_ = 1; #\u{6F} = 1; #\u2118 = 1; #ZW_\u200C_NJ = 1; #ZW_\u200D_J = 1; 61 $() { 62 return this.#$; 63 } 64 _() { 65 return this.#_; 66 } 67 \u{6F}() { 68 return this.#\u{6F}; 69 } 70 \u2118() { 71 return this.#\u2118; 72 } 73 ZW_\u200C_NJ() { 74 return this.#ZW_\u200C_NJ; 75 } 76 ZW_\u200D_J() { 77 return this.#ZW_\u200D_J; 78 } 79 } 80 81 var c = new C(); 82 83 assert( 84 !Object.prototype.hasOwnProperty.call(c, "m"), 85 "m doesn't appear as an own property on the C instance" 86 ); 87 assert( 88 !Object.prototype.hasOwnProperty.call(C.prototype, "m"), 89 "m doesn't appear as an own property on the C prototype" 90 ); 91 92 verifyProperty(C, "m", { 93 enumerable: false, 94 configurable: true, 95 writable: true, 96 }, {restore: true}); 97 98 C.m().next().then(function(v) { 99 assert.sameValue(v.value, 42); 100 assert.sameValue(v.done, true); 101 102 function assertions() { 103 // Cover $DONE handler for async cases. 104 function $DONE(error) { 105 if (error) { 106 throw new Test262Error('Test262:AsyncTestFailure') 107 } 108 } 109 assert.sameValue(c.$(), 1); 110 assert.sameValue(c._(), 1); 111 assert.sameValue(c.\u{6F}(), 1); 112 assert.sameValue(c.\u2118(), 1); 113 assert.sameValue(c.ZW_\u200C_NJ(), 1); 114 assert.sameValue(c.ZW_\u200D_J(), 1); 115 116 } 117 118 return Promise.resolve(assertions()); 119 }).then($DONE, $DONE);