(
cell: Extract<DiffRow, { type: "stack-line" }>["cell"],
lineNumberWidth: number,
showLineNumbers: boolean,
)
| 111 | } |
| 112 | |
| 113 | function staticStackGutterText( |
| 114 | cell: Extract<DiffRow, { type: "stack-line" }>["cell"], |
| 115 | lineNumberWidth: number, |
| 116 | showLineNumbers: boolean, |
| 117 | ) { |
| 118 | return stackGutterText(cell, lineNumberWidth, showLineNumbers).padEnd( |
| 119 | showLineNumbers ? lineNumberWidth * 2 + 5 : 2, |
| 120 | ); |
| 121 | } |
| 122 | |
| 123 | function staticSplitGutterText( |
| 124 | cell: SplitLineCell, |
no test coverage detected