(
hunk: Hunk,
firstLine: string | null,
filePath: string,
prefixContent?: string | null,
)
| 846 | private prefixContent: string | null |
| 847 | |
| 848 | constructor( |
| 849 | hunk: Hunk, |
| 850 | firstLine: string | null, |
| 851 | filePath: string, |
| 852 | prefixContent?: string | null, |
| 853 | ) { |
| 854 | this.hunk = hunk |
| 855 | this.filePath = filePath |
| 856 | this.firstLine = firstLine |
| 857 | this.prefixContent = prefixContent ?? null |
| 858 | } |
| 859 | |
| 860 | render(themeName: string, width: number, dim: boolean): string[] | null { |
| 861 | const mode = detectColorMode(themeName) |
nothing calls this directly
no outgoing calls
no test coverage detected