File: cf.ts

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (57 lines) | stat: -rw-r--r-- 933 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// @allowUnreachableCode: false
function f() {
    var z;
    var x=10;
    var y=3;

    L1: for (var i=0;i<19;i++) {
        if (y==7) {
            continue L1;
            x=11;
        }
        if (y==3) {
            y++;
        }
        else {
            y--;
        }
        do {
            y+=2;
            if (y==20) {
                break;
                x=12;
            }
        } while (y<41);
        y++;
    }
    while (y>2) {
        y=y>>1;
    }
    L2: try {
        L3: if (x<y) {
            break L2;
            x=13;
        }
        else {
            break L3;
            x=14;
        }
    }
    catch (e) {
        x++;
    }
    finally {
        x+=3;
    }
    y++;
    for (var k=0;k<10;k++) {
        z;
        break;
    }
    for (k=0;k<10;k++) {
        if (k==6) {
            continue;
        }
        break;
    }
}