lsp_call_hierarchy
Analyze code flow by identifying function callers and callees to understand dependencies and assess refactoring impact.
Instructions
Get the call hierarchy for a function/method - who calls this function (incoming) and what functions this calls (outgoing). Essential for understanding code flow and impact analysis before refactoring.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to the source file | |
| line | Yes | Line number (1-indexed) | |
| column | Yes | Column number (1-indexed) | |
| direction | No | Direction of call hierarchy: incoming (callers), outgoing (callees), or both | both |