(line: number, endLine: number)
| 11 | } |
| 12 | |
| 13 | function formatLineRange(line: number, endLine: number): string { |
| 14 | return endLine > line ? `L${line}-L${endLine}` : `L${line}`; |
| 15 | } |
| 16 | |
| 17 | function formatSignatureBlock(analysis: FileAnalysis): string { |
| 18 | const lines: string[] = []; |
no outgoing calls
no test coverage detected