* Get callers of a function/method * * @param nodeId - ID of the function/method node * @param maxDepth - Maximum depth to traverse (default: 1) * @returns Array of nodes that call this function
(nodeId: string, maxDepth: number = 1)
| 1617 | * @returns Array of nodes that call this function |
| 1618 | */ |
| 1619 | getCallers(nodeId: string, maxDepth: number = 1): Array<{ node: Node; edge: Edge }> { |
| 1620 | return this.traverser.getCallers(nodeId, maxDepth); |
| 1621 | } |
| 1622 | |
| 1623 | /** |
| 1624 | * Get callees of a function/method |
no outgoing calls