get_dataflow
Analyze how parameters flow through a function's body to identify mutations, return values, and call relationships for code understanding and debugging.
Instructions
Intra-function dataflow analysis: track how each parameter flows through the function body — into which calls, where it gets mutated, and what is returned. Phase 1: single function scope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol_id | No | Symbol ID of the function/method to analyze | |
| fqn | No | Fully qualified name of the function/method | |
| direction | No | Analysis direction (default both) | |
| depth | No | Max analysis depth for chained calls (default 3) |