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