analyze_control_flow
Analyze control flow within a range of statements in a C# method. Returns reachability of start/end points, return statements, and exit points. Useful for detecting unreachable code and understanding branching.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
filePath | string | ✓ | Full path to the C# source file |
startLine | int | ✓ | First line of the statement range (1-based) |
endLine | int | ✓ | Last line of the statement range (1-based) |