1/* 2 * Copyright (c) 2024-2025 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 16const b = 1 + 1 * 2 17const a = b + 10 18enum Color { 19 Red = b + "a" + 1 + 1, 20 Blue = a + "Blue" + 3.123414515123516135135, 21 Yelllow = "a" + 123401841039413413413431.123124, 22 Green = undefined + "12" + null + c'a' + (12 + 3) + 123, 23} 24 25function main() { 26 let redString : string = b + "a" + 1 + 1; 27 assertEQ(Color.Red.toString(), redString) 28 29 let blueString = a + "Blue" + 3.123414515123516135135; 30 assertEQ(Color.Blue.toString(), blueString) 31 32 let yellowString = "a" + 123401841039413413413431.123124; 33 assertEQ(Color.Yelllow.toString(), yellowString) 34 35 let greenString = undefined + "12" + null + c'a' + (12 + 3) + 123 36 assertEQ(Color.Green.toString(), greenString) 37}