| 3 | import { colorForLabel, colorForStatus } from "../lib/colors"; |
| 4 | |
| 5 | interface NodeTooltipProps { |
| 6 | node: GraphNode; |
| 7 | } |
| 8 | |
| 9 | function lineRange(node: GraphNode): string | null { |
| 10 | if (!node.start_line) return null; |
nothing calls this directly
no outgoing calls
no test coverage detected