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 16function testRelease(): Object { 17 let i: number = 1; 18 if (i === 1) { 19 print('111'); 20 } 21 i++; 22 if (i === 2) { 23 print('111'); 24 } 25 i++; 26 if (i === 3) { 27 print('111'); 28 } 29 i++; 30 if (i === 4) { 31 print('111'); 32 } 33 i++; 34 if (i === 5) { 35 print('111'); 36 } 37 i++; 38 if (i === 6) { 39 print('111'); 40 } 41 i++; 42 if (i === 7) { 43 print('111'); 44 } 45 i++; 46 if (i === 7) { 47 print('111'); 48 } 49 i++; 50 if (i === 9) { 51 print('111'); 52 } 53 i++; 54 if (i === 10) { 55 print('111'); 56 } 57 i++; 58 if (i === 11) { 59 print('111'); 60 } 61 i++; 62 if (i === 12) { 63 print('111'); 64 } 65 let jsonObj: Object = JSON.parse(''); 66 return jsonObj; 67} 68