* Get callees of a function/method * * @param nodeId - ID of the function/method node * @param maxDepth - Maximum depth to traverse (default: 1) * @returns Array of nodes called by this function
(nodeId: string, maxDepth: number = 1)
| 1628 | * @returns Array of nodes called by this function |
| 1629 | */ |
| 1630 | getCallees(nodeId: string, maxDepth: number = 1): Array<{ node: Node; edge: Edge }> { |
| 1631 | return this.traverser.getCallees(nodeId, maxDepth); |
| 1632 | } |
| 1633 | |
| 1634 | /** |
| 1635 | * Calculate the impact radius of a node |
no outgoing calls
no test coverage detected