• 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
16(function () {
17  function f1() {
18    f3();
19  }
20  function f3() {}
21  function f5() {}
22  function f6() {
23    let v31 = 20;
24    function f19() {
25      loop1: for (var v32 = 0; v32++ < 10;) {
26        let v36 = 21;
27        let v37 = function () {
28          return v36;
29        };
30        try {} catch (v38) {} finally {
31          f5(v31 === 20);
32        }
33        let j = 0;
34        loop2: do {
35          j++;
36          let v38 = 21;
37          let v39 = function () {
38            return v38;
39          };
40          try {} catch (v38) {} finally {
41            f5(v31 === 20);
42          }
43          loop3: {
44            let v38 = 21;
45            let v39 = function () {
46              return v38;
47            };
48            try {} catch (v38) {} finally {
49              f5(v31 === 20);
50              continue loop1;
51            }
52          }
53        } while (j < 3)
54      }
55    }
56    f19();
57  }
58  for (var v1 = 0; v1 < 10; v1++) {
59    f6();
60  }
61})();
62