find_references
Find all references to a symbol in a source file by specifying its file path, line, and column. Returns locations of usages throughout the codebase.
Instructions
Find all references to a symbol at a given location
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to the source file | |
| line | Yes | Line number (0-indexed) | |
| column | Yes | Column number (0-indexed) | |
| include_declaration | No | Include the declaration in the results (default: true) |