• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 str1 = 'string1';
17let str2 = 'string2';
18let str3 = 'string3';
19let str4 = 'string4';
20let str5 = 'string5';
21let str6 = 'string6';
22let str7 = 'string7';
23let str8 = 'string8';
24let treeStr1 = str1 + str2;
25let treeStr2 = str3 + str4;
26let treeStr3 = str5 + str6;
27let treeStr4 = str7 + str8;
28let treeStr5 = str1 + str2 + str3 + str4;
29let treeStr6 = str5 + str6 + str7 + str8;
30let treeStr7 = str1 + str2 + str3 + str4 + str5 + str6 + str7 + str8;
31globalThis.save1 = treeStr1;
32globalThis.save2 = treeStr2;
33globalThis.save3 = treeStr3;
34globalThis.save4 = treeStr4;
35globalThis.save5 = treeStr5;
36globalThis.save6 = treeStr6;
37globalThis.save7 = treeStr7;