()
| 3033 | const out: TsNode[] = [] |
| 3034 | let segStart = P.L.b |
| 3035 | const flushRegex = (): void => { |
| 3036 | if (P.L.b > segStart) out.push(mk(P, 'regex', segStart, P.L.b, [])) |
| 3037 | } |
| 3038 | while (P.L.i < P.L.len) { |
| 3039 | const c = peek(P.L) |
| 3040 | if (c === '}' || c === '\n') break |
no test coverage detected