webruby 0.2.4 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/lib/webruby/environment.rb +4 -0
  3. data/lib/webruby/rake/files.rake +2 -1
  4. data/lib/webruby/rake/mruby.rake +4 -2
  5. data/modules/emscripten/AUTHORS +1 -0
  6. data/modules/emscripten/cmake/Platform/Emscripten.cmake +2 -0
  7. data/modules/emscripten/emcc +96 -40
  8. data/modules/emscripten/emrun +301 -136
  9. data/modules/emscripten/emscripten.py +5 -45
  10. data/modules/emscripten/src/analyzer.js +11 -1
  11. data/modules/emscripten/src/compiler.js +1 -1
  12. data/modules/emscripten/src/emrun_postjs.js +2 -2
  13. data/modules/emscripten/src/emrun_prejs.js +5 -0
  14. data/modules/emscripten/src/emscripten-source-map.min.js +31 -0
  15. data/modules/emscripten/src/library.js +187 -0
  16. data/modules/emscripten/src/library_egl.js +20 -0
  17. data/modules/emscripten/src/library_sdl.js +1 -0
  18. data/modules/emscripten/src/preamble.js +4 -0
  19. data/modules/emscripten/src/relooper/Relooper.cpp +33 -15
  20. data/modules/emscripten/src/relooper/Relooper.h +20 -14
  21. data/modules/emscripten/src/relooper/fuzzer.py +6 -0
  22. data/modules/emscripten/src/relooper/test.cpp +28 -0
  23. data/modules/emscripten/src/relooper/test.txt +211 -166
  24. data/modules/emscripten/src/relooper/test2.txt +20 -20
  25. data/modules/emscripten/src/relooper/test3.txt +41 -41
  26. data/modules/emscripten/src/relooper/test4.txt +26 -26
  27. data/modules/emscripten/src/relooper/test5.txt +52 -52
  28. data/modules/emscripten/src/relooper/test6.txt +19 -19
  29. data/modules/emscripten/src/relooper/test_dead.txt +1 -1
  30. data/modules/emscripten/src/relooper/test_debug.txt +31 -31
  31. data/modules/emscripten/src/relooper/test_fuzz1.txt +50 -50
  32. data/modules/emscripten/src/relooper/test_fuzz2.txt +21 -21
  33. data/modules/emscripten/src/relooper/test_fuzz3.txt +18 -18
  34. data/modules/emscripten/src/relooper/test_fuzz4.txt +28 -28
  35. data/modules/emscripten/src/relooper/test_fuzz5.txt +61 -61
  36. data/modules/emscripten/src/relooper/test_fuzz6.txt +179 -179
  37. data/modules/emscripten/src/relooper/test_inf.txt +846 -846
  38. data/modules/emscripten/src/relooper/testit.sh +15 -15
  39. data/modules/emscripten/system/include/emscripten/emscripten.h +64 -0
  40. data/modules/emscripten/tools/eliminator/asm-eliminator-test-output.js +8 -2
  41. data/modules/emscripten/tools/eliminator/asm-eliminator-test.js +9 -1
  42. data/modules/emscripten/tools/eliminator/eliminator-test-output.js +11 -0
  43. data/modules/emscripten/tools/eliminator/eliminator-test.js +16 -1
  44. data/modules/emscripten/tools/file_packager.py +59 -49
  45. data/modules/emscripten/tools/js-optimizer.js +47 -8
  46. data/modules/emscripten/tools/shared.py +3 -3
  47. data/modules/emscripten/tools/test-js-optimizer-asm-pre-output.js +5 -3
  48. data/modules/emscripten/tools/test-js-optimizer-asm-pre.js +4 -0
  49. data/modules/mruby/INSTALL +11 -6
  50. data/modules/mruby/include/mrbconf.h +0 -3
  51. data/modules/mruby/include/mruby/khash.h +34 -36
  52. data/modules/mruby/include/mruby/string.h +3 -0
  53. data/modules/mruby/include/mruby.h +3 -3
  54. data/modules/mruby/mrblib/string.rb +3 -0
  55. data/modules/mruby/src/class.c +12 -12
  56. data/modules/mruby/src/codegen.c +18 -11
  57. data/modules/mruby/src/hash.c +12 -12
  58. data/modules/mruby/src/kernel.c +3 -3
  59. data/modules/mruby/src/load.c +29 -14
  60. data/modules/mruby/src/numeric.c +1 -1
  61. data/modules/mruby/src/object.c +14 -2
  62. data/modules/mruby/src/state.c +13 -10
  63. data/modules/mruby/src/string.c +1 -3
  64. data/modules/mruby/src/symbol.c +44 -18
  65. data/modules/mruby/src/variable.c +6 -6
  66. data/modules/mruby/test/t/class.rb +34 -0
  67. data/modules/mruby/test/t/module.rb +1 -1
  68. data/modules/mruby/test/t/syntax.rb +28 -0
  69. metadata +5 -13
  70. data/modules/emscripten/src/relooper.js +0 -11516
  71. data/modules/emscripten/src/relooper.js.raw.js +0 -11511
  72. data/modules/emscripten/tools/__init__.pyc +0 -0
  73. data/modules/emscripten/tools/cache.pyc +0 -0
  74. data/modules/emscripten/tools/gen_struct_info.pyc +0 -0
  75. data/modules/emscripten/tools/js_optimizer.pyc +0 -0
  76. data/modules/emscripten/tools/jsrun.pyc +0 -0
  77. data/modules/emscripten/tools/response_file.pyc +0 -0
  78. data/modules/emscripten/tools/shared.pyc +0 -0
  79. data/modules/emscripten/tools/tempfiles.pyc +0 -0
@@ -1,86 +1,86 @@
1
1
 
2
2
 
3
- print('entry'); var label; var state; var decisions = [133, 98, 134, 143, 162, 187, 130, 87, 91, 49, 102, 47, 9, 132, 179, 176, 157, 25, 64, 161, 57, 107, 16, 167, 185, 45, 191, 180, 23, 131]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }
4
- switch (the_var) {
5
- default: {
6
- }
7
- }
8
- L1: while(1) {
9
- print(7); state = check();
3
+ print('entry'); var label; var state; var decisions = [133, 98, 134, 143, 162, 187, 130, 87, 91, 49, 102, 47, 9, 132, 179, 176, 157, 25, 64, 161, 57, 107, 16, 167, 185, 45, 191, 180, 23, 131]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }
10
4
  switch (the_var) {
11
- state % 3 == 1 {
12
- label = 3;
13
- break;
5
+ default: {
6
+ }
14
7
  }
15
- state % 3 == 0 {
16
- print(8); state = check();
8
+ L1: while(1) {
9
+ print(7); state = check();
17
10
  switch (the_var) {
18
- state % 2 == 0 {
19
- label = 5;
11
+ state % 3 == 1 {
12
+ label = 3;
20
13
  break;
21
14
  }
22
- default: {
23
- label = 7;
24
- }
25
- }
26
- break;
27
- }
28
- default: {
29
- break L1;
30
- }
31
- }
32
- L5: while(1) {
33
- if (label == 3) {
34
- label = 0;
35
- print(2); state = check();
36
- switch (the_var) {
37
- default: {
38
- }
39
- }
40
- print(1); state = check();
15
+ state % 3 == 0 {
16
+ print(8); state = check();
41
17
  switch (the_var) {
42
18
  state % 2 == 0 {
43
19
  label = 5;
44
- continue L5;
45
20
  break;
46
21
  }
47
22
  default: {
48
23
  label = 7;
49
- continue L5;
50
24
  }
51
25
  }
26
+ break;
52
27
  }
53
- else if (label == 5) {
54
- label = 0;
55
- print(4); state = check();
56
- switch (the_var) {
57
- default: {
58
- label = 3;
59
- continue L5;
60
- }
61
- }
28
+ default: {
29
+ break L1;
62
30
  }
63
- else if (label == 7) {
64
- label = 0;
65
- print(6); state = check();
66
- switch (the_var) {
67
- state % 2 == 0 {
68
- continue L1;
69
- break;
31
+ }
32
+ L5: while(1) {
33
+ if (label == 3) {
34
+ label = 0;
35
+ print(2); state = check();
36
+ switch (the_var) {
37
+ default: {
38
+ }
39
+ }
40
+ print(1); state = check();
41
+ switch (the_var) {
42
+ state % 2 == 0 {
43
+ label = 5;
44
+ continue L5;
45
+ break;
46
+ }
47
+ default: {
48
+ label = 7;
49
+ continue L5;
50
+ }
51
+ }
70
52
  }
71
- default: {
72
- label = 7;
73
- continue L5;
53
+ else if (label == 5) {
54
+ label = 0;
55
+ print(4); state = check();
56
+ switch (the_var) {
57
+ default: {
58
+ label = 3;
59
+ continue L5;
60
+ }
61
+ }
74
62
  }
63
+ else if (label == 7) {
64
+ label = 0;
65
+ print(6); state = check();
66
+ switch (the_var) {
67
+ state % 2 == 0 {
68
+ continue L1;
69
+ break;
70
+ }
71
+ default: {
72
+ label = 7;
73
+ continue L5;
74
+ }
75
+ }
75
76
  }
76
77
  }
77
78
  }
78
- }
79
- while(1) {
80
- print(3); state = check();
81
- switch (the_var) {
82
- default: {
83
- }
79
+ while(1) {
80
+ print(3); state = check();
81
+ switch (the_var) {
82
+ default: {
83
+ }
84
+ }
84
85
  }
85
- }
86
86
 
@@ -1,291 +1,291 @@
1
1
 
2
2
 
3
- print('entry'); var label; var state; var decisions = [759, 1223, 618, 1805, 277, 512, 204, 1545, 606, 734, 585, 447, 1670, 1031, 665, 1728, 353, 634, 1033, 13, 658, 589, 474, 854, 405, 1111, 1640, 697, 1156, 1357, 317, 618, 990, 1401, 405, 564, 497, 829, 653, 1194, 25, 322, 1178, 198, 1565, 1419, 1608, 486, 368, 606, 813, 22, 148, 141, 261, 375, 472, 964, 1106, 694, 205, 771, 44, 675, 545, 1027, 1528, 240, 1289, 564, 792, 744, 366, 668, 823, 210, 428, 1009, 1662, 1317, 1183, 681, 14, 1334, 712, 506, 224, 695, 401, 1035, 384, 486, 1519, 122, 1186, 1487, 1819, 1702, 463, 1706, 660, 1642, 847, 991, 976, 940, 867, 46, 23, 1449, 56, 1711, 634, 404, 1558, 168, 710, 1581, 1302, 870, 997, 1295, 1739, 769, 1005, 291, 1638, 1771, 842, 659, 1695, 713, 935, 802, 1173, 1572, 850, 607, 996, 55, 1576, 321, 1815, 662, 1044, 1612, 1680, 1050, 844, 553, 278, 1447, 1662, 1094, 1797, 774, 1013, 1204, 907, 340, 1172, 1460, 869, 1264, 111, 1176, 484, 845, 258, 417, 1246, 1017, 745, 189, 333, 1658, 1395, 1764, 1786, 165, 404, 847, 1429, 1574, 403, 718, 1118, 1756, 94, 56, 1498, 1696, 1355, 840, 50, 82, 371, 1087, 875, 1337, 267, 958, 1209, 1167, 1025, 1684, 184, 962, 1496, 201, 127, 372, 1, 1005, 402, 1387, 213, 1143, 1271, 167, 10, 12, 1060, 1390, 1366, 893, 747, 1005, 481, 876, 227, 514, 589, 250, 273, 1188, 1052, 719, 219, 1006, 38, 120, 1454, 489, 672, 149, 534, 1081, 1721, 586, 330, 25, 356, 1743, 1607, 336, 981, 419, 1036, 1293, 1026, 1300, 1453, 792, 22, 45, 420, 409, 1027, 1437, 1421, 795, 136, 1276, 1610, 1593]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }
4
- switch (the_var) {
5
- default: {
6
- }
7
- }
8
- L1: while(1) {
9
- print(30); state = check();// .................................................................................................................................................................................................................
10
- switch (the_var) {
11
- state % 3 == 0 {
12
- break;
13
- }
14
- state % 3 == 1 {
15
- label = 67;
16
- break L1;
17
- break;
18
- }
19
- default: {
20
- break L1;
21
- }
22
- }
23
- print(58); state = check();// ......................................................................................
24
- switch (the_var) {
25
- default: {
26
- }
27
- }
28
- }
29
- if (label == 67) {
30
- print(66); state = check();// ...............................................................................................................
3
+ print('entry'); var label; var state; var decisions = [759, 1223, 618, 1805, 277, 512, 204, 1545, 606, 734, 585, 447, 1670, 1031, 665, 1728, 353, 634, 1033, 13, 658, 589, 474, 854, 405, 1111, 1640, 697, 1156, 1357, 317, 618, 990, 1401, 405, 564, 497, 829, 653, 1194, 25, 322, 1178, 198, 1565, 1419, 1608, 486, 368, 606, 813, 22, 148, 141, 261, 375, 472, 964, 1106, 694, 205, 771, 44, 675, 545, 1027, 1528, 240, 1289, 564, 792, 744, 366, 668, 823, 210, 428, 1009, 1662, 1317, 1183, 681, 14, 1334, 712, 506, 224, 695, 401, 1035, 384, 486, 1519, 122, 1186, 1487, 1819, 1702, 463, 1706, 660, 1642, 847, 991, 976, 940, 867, 46, 23, 1449, 56, 1711, 634, 404, 1558, 168, 710, 1581, 1302, 870, 997, 1295, 1739, 769, 1005, 291, 1638, 1771, 842, 659, 1695, 713, 935, 802, 1173, 1572, 850, 607, 996, 55, 1576, 321, 1815, 662, 1044, 1612, 1680, 1050, 844, 553, 278, 1447, 1662, 1094, 1797, 774, 1013, 1204, 907, 340, 1172, 1460, 869, 1264, 111, 1176, 484, 845, 258, 417, 1246, 1017, 745, 189, 333, 1658, 1395, 1764, 1786, 165, 404, 847, 1429, 1574, 403, 718, 1118, 1756, 94, 56, 1498, 1696, 1355, 840, 50, 82, 371, 1087, 875, 1337, 267, 958, 1209, 1167, 1025, 1684, 184, 962, 1496, 201, 127, 372, 1, 1005, 402, 1387, 213, 1143, 1271, 167, 10, 12, 1060, 1390, 1366, 893, 747, 1005, 481, 876, 227, 514, 589, 250, 273, 1188, 1052, 719, 219, 1006, 38, 120, 1454, 489, 672, 149, 534, 1081, 1721, 586, 330, 25, 356, 1743, 1607, 336, 981, 419, 1036, 1293, 1026, 1300, 1453, 792, 22, 45, 420, 409, 1027, 1437, 1421, 795, 136, 1276, 1610, 1593]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }
31
4
  switch (the_var) {
32
5
  default: {
33
6
  }
34
7
  }
35
- }
36
- print(6); state = check();// .........
37
- switch (the_var) {
38
- default: {
39
- }
40
- }
41
- while(1) {
42
- print(88); state = check();// ....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
43
- switch (the_var) {
44
- default: {
8
+ L1: while(1) {
9
+ print(30); state = check();// .................................................................................................................................................................................................................
10
+ switch (the_var) {
11
+ state % 3 == 0 {
12
+ break;
13
+ }
14
+ state % 3 == 1 {
15
+ label = 67;
16
+ break L1;
17
+ break;
18
+ }
19
+ default: {
20
+ break L1;
21
+ }
22
+ }
23
+ print(58); state = check();// ......................................................................................
24
+ switch (the_var) {
25
+ default: {
26
+ }
27
+ }
45
28
  }
29
+ if (label == 67) {
30
+ print(66); state = check();// ...............................................................................................................
31
+ switch (the_var) {
32
+ default: {
33
+ }
34
+ }
46
35
  }
47
- print(70); state = check();// ..........................................................................................................................
36
+ print(6); state = check();// .........
48
37
  switch (the_var) {
49
38
  default: {
50
39
  }
51
40
  }
52
- L10: while(1) {
53
- print(47); state = check();// ....................................................................................................................................
41
+ while(1) {
42
+ print(88); state = check();// ....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
54
43
  switch (the_var) {
55
44
  default: {
56
45
  }
57
46
  }
58
- print(28); state = check();// ..............................................................................................................
47
+ print(70); state = check();// ..........................................................................................................................
59
48
  switch (the_var) {
60
49
  default: {
61
50
  }
62
51
  }
63
- L13: while(1) {
64
- print(75); state = check();// .............................................
52
+ L10: while(1) {
53
+ print(47); state = check();// ....................................................................................................................................
65
54
  switch (the_var) {
66
55
  default: {
67
56
  }
68
57
  }
69
- print(7); state = check();// .............................................................................................................................................................................................
58
+ print(28); state = check();// ..............................................................................................................
70
59
  switch (the_var) {
71
- state % 2 == 0 {
72
- break;
73
- }
74
60
  default: {
75
- break L13;
76
- }
77
61
  }
78
- }
79
- print(89); state = check();// ......................................................................................................................................................................................................................................................................................................................................................
80
- switch (the_var) {
81
- default: {
82
- }
83
- }
84
- print(68); state = check();// ......................................................................................................................................................................................................................................................................................................................
85
- switch (the_var) {
86
- default: {
87
- }
88
- }
89
- L18: while(1) {
90
- print(51); state = check();// .............................................................................................
91
- switch (the_var) {
92
- default: {
93
62
  }
94
- }
95
- L20: while(1) {
96
- print(36); state = check();// .........................
63
+ L13: while(1) {
64
+ print(75); state = check();// .............................................
97
65
  switch (the_var) {
98
- state % 2 == 0 {
99
- break L20;
100
- break;
101
- }
102
66
  default: {
103
67
  }
104
68
  }
105
- print(16); state = check();// ................................................................................................................................................................................................................................................................................................................................................................
69
+ print(7); state = check();// .............................................................................................................................................................................................
106
70
  switch (the_var) {
107
- default: {
108
- }
71
+ state % 2 == 0 {
72
+ break;
109
73
  }
110
- print(57); state = check();// ...........................................................................................................................................................................................................................................................................................................................
111
- switch (the_var) {
112
74
  default: {
75
+ break L13;
113
76
  }
114
77
  }
115
- print(39); state = check();// ................
78
+ }
79
+ print(89); state = check();// ......................................................................................................................................................................................................................................................................................................................................................
80
+ switch (the_var) {
81
+ default: {
82
+ }
83
+ }
84
+ print(68); state = check();// ......................................................................................................................................................................................................................................................................................................................
85
+ switch (the_var) {
86
+ default: {
87
+ }
88
+ }
89
+ L18: while(1) {
90
+ print(51); state = check();// .............................................................................................
116
91
  switch (the_var) {
117
- state % 3 == 0 {
118
- break;
119
- }
120
- state % 3 == 1 {
121
- label = 74;
122
- break;
123
- }
124
92
  default: {
125
- label = 32;
126
- break L20;
127
93
  }
128
94
  }
129
- L25: while(1) {
130
- if (label == 74) {
131
- label = 0;
132
- print(73); state = check();// .
95
+ L20: while(1) {
96
+ print(36); state = check();// .........................
97
+ switch (the_var) {
98
+ state % 2 == 0 {
99
+ break L20;
100
+ break;
101
+ }
102
+ default: {
103
+ }
104
+ }
105
+ print(16); state = check();// ................................................................................................................................................................................................................................................................................................................................................................
106
+ switch (the_var) {
107
+ default: {
108
+ }
109
+ }
110
+ print(57); state = check();// ...........................................................................................................................................................................................................................................................................................................................
111
+ switch (the_var) {
112
+ default: {
113
+ }
114
+ }
115
+ print(39); state = check();// ................
116
+ switch (the_var) {
117
+ state % 3 == 0 {
118
+ break;
119
+ }
120
+ state % 3 == 1 {
121
+ label = 74;
122
+ break;
123
+ }
124
+ default: {
125
+ label = 32;
126
+ break L20;
127
+ }
128
+ }
129
+ L25: while(1) {
130
+ if (label == 74) {
131
+ label = 0;
132
+ print(73); state = check();// .
133
+ switch (the_var) {
134
+ state % 3 == 1 {
135
+ label = 32;
136
+ break L20;
137
+ break;
138
+ }
139
+ state % 3 == 0 {
140
+ break L25;
141
+ break;
142
+ }
143
+ default: {
144
+ }
145
+ }
146
+ print(43); state = check();// .........
147
+ switch (the_var) {
148
+ default: {
149
+ }
150
+ }
151
+ print(32); state = check();// ......................................................................................................
152
+ switch (the_var) {
153
+ default: {
154
+ }
155
+ }
156
+ print(83); state = check();// ........................................................................................
157
+ switch (the_var) {
158
+ default: {
159
+ }
160
+ }
161
+ print(77); state = check();// ...........................................................................................................................................................................................................................................................................................
162
+ switch (the_var) {
163
+ default: {
164
+ }
165
+ }
166
+ print(76); state = check();// ..............................................................................................................................................................................................................................................................................................................................................................................................................................
167
+ switch (the_var) {
168
+ default: {
169
+ }
170
+ }
171
+ print(22); state = check();// .........................................................................................................
172
+ switch (the_var) {
173
+ default: {
174
+ }
175
+ }
176
+ }
177
+ print(72); state = check();// ..........................................................................................................
133
178
  switch (the_var) {
134
- state % 3 == 1 {
135
- label = 32;
179
+ state % 2 == 0 {
180
+ label = 92;
136
181
  break L20;
137
182
  break;
138
183
  }
139
- state % 3 == 0 {
140
- break L25;
184
+ default: {
185
+ }
186
+ }
187
+ print(80); state = check();// ....................................
188
+ switch (the_var) {
189
+ state % 2 == 0 {
190
+ continue L18;
141
191
  break;
142
192
  }
143
193
  default: {
144
194
  }
145
195
  }
146
- print(43); state = check();// .........
196
+ print(50); state = check();// ........................................
147
197
  switch (the_var) {
148
198
  default: {
149
199
  }
150
200
  }
151
- print(32); state = check();// ......................................................................................................
201
+ print(29); state = check();// ...............
152
202
  switch (the_var) {
153
203
  default: {
154
204
  }
155
205
  }
156
- print(83); state = check();// ........................................................................................
206
+ print(8); state = check();// ....................................................................................................................................................................................................................................................
157
207
  switch (the_var) {
208
+ state % 2 == 0 {
209
+ continue L10;
210
+ break;
211
+ }
158
212
  default: {
159
213
  }
160
214
  }
161
- print(77); state = check();// ...........................................................................................................................................................................................................................................................................................
215
+ print(19); state = check();// ......................................................................................................................................................................................................................
162
216
  switch (the_var) {
163
217
  default: {
164
218
  }
165
219
  }
166
- print(76); state = check();// ..............................................................................................................................................................................................................................................................................................................................................................................................................................
220
+ print(56); state = check();// ....................................................................................................................................................................................................................
167
221
  switch (the_var) {
168
222
  default: {
169
223
  }
170
224
  }
171
- print(22); state = check();// .........................................................................................................
225
+ print(34); state = check();// ..........................................................................................................................................
172
226
  switch (the_var) {
173
227
  default: {
228
+ label = 74;
174
229
  }
175
230
  }
176
231
  }
177
- print(72); state = check();// ..........................................................................................................
178
- switch (the_var) {
179
- state % 2 == 0 {
180
- label = 92;
181
- break L20;
182
- break;
183
- }
184
- default: {
185
- }
186
- }
187
- print(80); state = check();// ....................................
188
- switch (the_var) {
189
- state % 2 == 0 {
190
- continue L18;
191
- break;
192
- }
193
- default: {
194
- }
195
- }
196
- print(50); state = check();// ........................................
197
- switch (the_var) {
198
- default: {
199
- }
200
- }
201
- print(29); state = check();// ...............
202
- switch (the_var) {
203
- default: {
204
- }
205
- }
206
- print(8); state = check();// ....................................................................................................................................................................................................................................................
232
+ print(62); state = check();// .......................................................................................
207
233
  switch (the_var) {
208
- state % 2 == 0 {
209
- continue L10;
210
- break;
211
- }
212
234
  default: {
213
235
  }
214
236
  }
215
- print(19); state = check();// ......................................................................................................................................................................................................................
237
+ }
238
+ if (label == 32) {
239
+ label = 0;
240
+ print(31); state = check();// ..........................................................................................................................................................................................................
216
241
  switch (the_var) {
217
242
  default: {
218
243
  }
219
244
  }
220
- print(56); state = check();// ....................................................................................................................................................................................................................
245
+ }
246
+ else if (label == 92) {
247
+ label = 0;
248
+ print(91); state = check();// ..............................................
221
249
  switch (the_var) {
222
250
  default: {
223
251
  }
224
252
  }
225
- print(34); state = check();// ..........................................................................................................................................
253
+ print(33); state = check();// ....
226
254
  switch (the_var) {
227
255
  default: {
228
- label = 74;
229
256
  }
230
257
  }
231
258
  }
232
- print(62); state = check();// .......................................................................................
259
+ print(60); state = check();// ......................................................................................................................................................................................................................................
233
260
  switch (the_var) {
234
261
  default: {
235
262
  }
236
263
  }
237
- }
238
- if (label == 32) {
239
- label = 0;
240
- print(31); state = check();// ..........................................................................................................................................................................................................
264
+ print(10); state = check();// ...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
241
265
  switch (the_var) {
242
266
  default: {
243
267
  }
244
268
  }
245
- }
246
- else if (label == 92) {
247
- label = 0;
248
- print(91); state = check();// ..............................................
269
+ print(52); state = check();// ..............................................................................
249
270
  switch (the_var) {
271
+ state % 2 == 0 {
272
+ break L10;
273
+ break;
274
+ }
250
275
  default: {
251
276
  }
252
277
  }
253
- print(33); state = check();// ....
278
+ print(2); state = check();// .........
254
279
  switch (the_var) {
255
280
  default: {
256
281
  }
257
282
  }
258
283
  }
259
- print(60); state = check();// ......................................................................................................................................................................................................................................
260
- switch (the_var) {
261
- default: {
262
- }
263
- }
264
- print(10); state = check();// ...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
265
- switch (the_var) {
266
- default: {
267
- }
268
- }
269
- print(52); state = check();// ..............................................................................
270
- switch (the_var) {
271
- state % 2 == 0 {
272
- break L10;
273
- break;
274
- }
275
- default: {
276
- }
277
- }
278
- print(2); state = check();// .........
279
- switch (the_var) {
280
- default: {
281
- }
282
- }
284
+ }
285
+ print(61); state = check();// .........................................................................................................................................................
286
+ switch (the_var) {
287
+ default: {
288
+ }
283
289
  }
284
290
  }
285
- print(61); state = check();// .........................................................................................................................................................
286
- switch (the_var) {
287
- default: {
288
- }
289
- }
290
- }
291
291