(private readonly text: string)
| 70 | private codes: AnsiCode[] = [] |
| 71 | |
| 72 | constructor(private readonly text: string) { |
| 73 | this.tokens = tokenize(text) |
| 74 | } |
| 75 | |
| 76 | segment(highlights: TextHighlight[]): TextSegment[] { |
| 77 | const segments: TextSegment[] = [] |
nothing calls this directly
no test coverage detected