Lines Matching +full:over +full:-

7 -----
16 ----------------------------------------------------------------------
19 -----------------------------------------------
23 should just be skipped over. The possible states of the stack top are
27 # -2 positive already run and we found ELSE (following ELSIF should fail)
28 # -1 positive already run (skip until ENDIF)
33 Ground rule is that non-condition lines are skipped over if the
47 | ELSIF[1] | 1 -1 | |
48 | ... whatever ... | | this line is skipped over |
49 | ELSE | 1 -2 | |
50 | ... whatever ... | | this line is skipped over |
53 | ELSIF[1] | -1 | |
54 | ... whatever ... | | this line is skipped over |
55 | IF[1] | -1 -1 | |
56 | ... whatever ... | | this line is skipped over |
57 | ELSIF[1] | -1 -1 | |
58 | ... whatever ... | | this line is skipped over |
59 | ELSE | -1 -2 | |
60 | ... whatever ... | | this line is skipped over |
61 | ENDIF | -1 | |
62 | ... whatever ... | | this line is skipped over |
68 | ... whatever ... | | this line is skipped over |
69 | IF[1] | 0 -1 | |
70 | ... whatever ... | | this line is skipped over |
71 | ELSIF[1] | 0 -1 | |
72 | ... whatever ... | | this line is skipped over |
73 | ELSE | 0 -2 | |
74 | ... whatever ... | | this line is skipped over |
76 | ... whatever ... | | this line is skipped over |
81 | ELSIF[1] | 1 -1 | |
82 | ... whatever ... | | this line is skipped over |
83 | ELSE | 1 -2 | |
84 | ... whatever ... | | this line is skipped over |
92 | ... whatever ... | | this line is skipped over |
93 | IF[0] | 0 -1 | |
94 | ... whatever ... | | this line is skipped over |
95 | ELSIF[1] | 0 -1 | |
96 | ... whatever ... | | this line is skipped over |
97 | ELSE | 0 -2 | |
98 | ... whatever ... | | this line is skipped over |
100 | ... whatever ... | | this line is skipped over |
104 | ... whatever ... | | this line is skipped over |
107 | ELSE | 1 -2 | |
108 | ... whatever ... | | this line is skipped over |
116 | ... whatever ... | | this line is skipped over |
117 | IF[0] | 0 -1 | |
118 | ... whatever ... | | this line is skipped over |
119 | ELSIF[0] | 0 -1 | |
120 | ... whatever ... | | this line is skipped over |
121 | ELSE | 0 -2 | |
122 | ... whatever ... | | this line is skipped over |
124 | ... whatever ... | | this line is skipped over |
128 | ... whatever ... | | this line is skipped over |
130 | ... whatever ... | | this line is skipped over |