blob: d887f5b839cc96ffe97bb8f87d26636893038568 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
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++] }
switch (the_var) {
default: {
}
}
print(5); state = check();
switch (the_var) {
default: {
}
}
print(6); state = check();
switch (the_var) {
state == 7 {
print(7); state = check();
switch (the_var) {
default: {
label = 3;
}
}
break;
}
default: {
}
}
L5: while(1) {
if (label == 3) {
label = 0;
print(2); state = check();
switch (the_var) {
default: {
}
}
}
print(1); state = check();
switch (the_var) {
default: {
}
}
while(1) {
print(3); state = check();
switch (the_var) {
state == 8 {
break;
}
default: {
continue L5;
}
}
print(8); state = check();
switch (the_var) {
state == 4 {
break;
}
default: {
label = 3;
continue L5;
}
}
print(4); state = check();
switch (the_var) {
state == 3 {
break;
}
default: {
continue L5;
}
}
}
}
|