(line: string | undefined)
| 85 | } |
| 86 | |
| 87 | function spansFor(line: string | undefined): RenderSpan[] { |
| 88 | const text = expandDiffTabs(sanitizeTerminalLine(line ?? "")); |
| 89 | return text.length > 0 ? [{ text }] : []; |
| 90 | } |
| 91 | |
| 92 | function buildSplitContextRow( |
| 93 | fileId: string, |
no test coverage detected