Distinct files with a `calls` edge into the node.
(target: { id: string })
| 38 | |
| 39 | /** Distinct files with a `calls` edge into the node. */ |
| 40 | function callerFiles(target: { id: string }): string[] { |
| 41 | return [...new Set(cg.getCallers(target.id).map((c) => c.node.filePath))].sort(); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Leave `relPath` in the exact on-disk state a resolution pass killed |
no test coverage detected