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 16let moduleA = 999; 17let closureStr = "1234"; 18class SendableA { 19 constructor() { 20 "use sendable"; 21 } 22 propA: string = "a"; 23 static propA: string = "ArkCompilerTestA"; 24} 25let closureNum = 4563; 26class SendableB { 27 constructor() { 28 "use sendable"; 29 } 30 propA: string = "b"; 31 static propB: string = "ArkCompilerTestB"; 32} 33export function test2() { 34 let a = new SendableA(); 35 let b = new SendableB(); 36 print(SendableA.propA); 37 print(SendableB.propB); 38 moduleA = 666; 39 closureStr = "456"; 40 closureNum = 456; 41 return "test"; 42}