| 84 | } |
| 85 | } |
| 86 | noinline Int find_back_until(Word64 syms) { |
| 87 | Int p = pos; |
| 88 | while (p > marker) { |
| 89 | p--; |
| 90 | if (TEST(syms, input->at(p).sym)) |
| 91 | return p; |
| 92 | } |
| 93 | return p; |
| 94 | } |
| 95 | noinline void safe_skip_until(Word64 syms) { |
| 96 | // handle parentheses and brackets properly. |
| 97 | Int par_level = 0; |