1/* 2 * Copyright (c) 2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16class D1 { 17 constructor() { 18 } 19 prop = "str1"; 20 1 = "str2"; 21 "str_prop" = "str3"; 22 ["computed2"] = "str5"; 23 [2] = "str6"; 24} 25 26const computed1: unique symbol = Symbol("symbol1"); 27const part1 = "dynamic"; 28const part2 = "property"; 29 30// 2 31class D2 { 32 constructor() { 33 this[computed1] = "str4"; 34 this["computed2"] = "str5"; 35 this[`${part1}_${part2}`] = "str6"; 36 this[1 + 2] = "str7"; 37 } 38}