codegraph_impact
Find all code affected by changing a symbol. Traverse the call graph upward from a symbol ID to reveal impacted callers, enabling impact analysis before modifications.
Instructions
Perform impact analysis: if I change this symbol, what else might be affected? Traverses the call graph upward (callers of callers) to find all potentially impacted code. Requires the symbol ID from codegraph_search.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_depth | No | Maximum traversal depth in the call graph. | |
| symbol_id | Yes | The symbol ID (from codegraph_search). |