Section heading for one distinct definition in grouped output.
(group: Node[])
| 1633 | |
| 1634 | /** Section heading for one distinct definition in grouped output. */ |
| 1635 | private definitionHeading(group: Node[]): string { |
| 1636 | const head = group[0]!; |
| 1637 | const line = head.startLine ? `:${head.startLine}` : ''; |
| 1638 | return `**${head.qualifiedName}** (${head.kind}) — ${head.filePath}${line}`; |
| 1639 | } |
| 1640 | |
| 1641 | /** |
| 1642 | * Handle codegraph_callers |
no outgoing calls
no test coverage detected