1/* 2 * Copyright (c) 2022 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 16 17var var1; 18declare var var2; 19 20let var3; 21declare let var4; 22 23const var5 = 1; 24declare const var6 = 4; 25declare const var7; 26 27type type1 = number | string; 28declare type type2 = number | string; 29 30function func1() { }; 31declare function func2(); 32func2(); 33 34declare class Class1 { 35 private static get a() 36 public g() 37 static declare readonly [5] 38 static declare readonly ["b"] 39 static readonly declare 67 40 declare static readonly j 41 private; 42 protected [1]() 43 public static k 44 #o; 45}