cpn-class-expr-fields-computed-property-name-from-integer-separators.js (1350B)
1 // This file was procedurally generated from the following sources: 2 // - src/computed-property-names/computed-property-name-from-integer-separators.case 3 // - src/computed-property-names/evaluation/class-expression-fields.template 4 /*--- 5 description: Computed property name from integer with separators (ComputedPropertyName in ClassExpression) 6 esid: prod-ComputedPropertyName 7 features: [computed-property-names, class-fields-public, class-static-fields-public] 8 flags: [generated] 9 info: | 10 ClassExpression: 11 classBindingIdentifier opt ClassTail 12 13 ClassTail: 14 ClassHeritage opt { ClassBody opt } 15 16 ClassBody: 17 ClassElementList 18 19 ClassElementList: 20 ClassElement 21 22 ClassElement: 23 MethodDefinition 24 25 MethodDefinition: 26 PropertyName ... 27 get PropertyName ... 28 set PropertyName ... 29 30 PropertyName: 31 ComputedPropertyName 32 33 ComputedPropertyName: 34 [ AssignmentExpression ] 35 ---*/ 36 37 38 let C = class { 39 [1_2_3_4_5_6_7_8] = 1_2_3_4_5_6_7_8; 40 41 static [1_2_3_4_5_6_7_8] = 1_2_3_4_5_6_7_8; 42 }; 43 44 let c = new C(); 45 46 assert.sameValue( 47 c[1_2_3_4_5_6_7_8], 48 1_2_3_4_5_6_7_8 49 ); 50 assert.sameValue( 51 C[1_2_3_4_5_6_7_8], 52 1_2_3_4_5_6_7_8 53 ); 54 assert.sameValue( 55 c[String(1_2_3_4_5_6_7_8)], 56 1_2_3_4_5_6_7_8 57 ); 58 assert.sameValue( 59 C[String(1_2_3_4_5_6_7_8)], 60 1_2_3_4_5_6_7_8 61 ); 62 63 reportCompare(0, 0);