Section heading for one distinct definition in grouped output.
(group: Node[])
| 1526 | |
| 1527 | /** Section heading for one distinct definition in grouped output. */ |
| 1528 | private definitionHeading(group: Node[]): string { |
| 1529 | const head = group[0]!; |
| 1530 | const line = head.startLine ? `:${head.startLine}` : ''; |
| 1531 | return `**${head.qualifiedName}** (${head.kind}) — ${head.filePath}${line}`; |
| 1532 | } |
| 1533 | |
| 1534 | /** |
| 1535 | * Handle codegraph_callers |
no outgoing calls
no test coverage detected