Section heading for one distinct definition in grouped output.
(group: Node[])
| 1561 | |
| 1562 | /** Section heading for one distinct definition in grouped output. */ |
| 1563 | private definitionHeading(group: Node[]): string { |
| 1564 | const head = group[0]!; |
| 1565 | const line = head.startLine ? `:${head.startLine}` : ''; |
| 1566 | return `**${head.qualifiedName}** (${head.kind}) — ${head.filePath}${line}`; |
| 1567 | } |
| 1568 | |
| 1569 | /** |
| 1570 | * Handle codegraph_callers |
no outgoing calls
no test coverage detected