()
| 638 | let i = 0; |
| 639 | |
| 640 | const flushCurrent = (): void => { |
| 641 | if (!current) { |
| 642 | return; |
| 643 | } |
| 644 | tokens.push(current); |
| 645 | current = ""; |
| 646 | currentKind = null; |
| 647 | }; |
| 648 | |
| 649 | while (i < text.length) { |
| 650 | const ansiResult = extractAnsiCode(text, i); |
no test coverage detected