blob: 63bbee0c01563277a096f97b5061d451f2a3746c (
plain)
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
|
print('entry'); var label; var state; var decisions = [4, 1, 7, 2, 6, 6, 8]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }
print(5); state = check();
print(6); state = check();
do {
if (state == 7) {
print(7); state = check();
label = 3;
break;
} else {
label = 2;
}
} while(0);
L5: while(1) {
if (label == 2) {
label = 0;
print(1); state = check();
while(1) {
print(3); state = check();
if (!(state == 8)) {
label = 2;
continue L5;
}
print(8); state = check();
if (!(state == 4)) {
label = 3;
continue L5;
}
print(4); state = check();
if (!(state == 3)) {
label = 2;
continue L5;
}
}
}
else if (label == 3) {
label = 0;
print(2); state = check();
label = 2;
continue;
}
}
|