get_symbols_in_scope
Retrieve visible symbols (variables, types, functions) at a specific location in a TypeScript/JavaScript file, enabling precise code context analysis based on line, file path, and root directory.
Instructions
Get all symbols (variables, types, functions, etc.) visible at a specific location in a TypeScript/JavaScript file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | File path containing the location (relative to root) | |
line | Yes | Line number (1-based) or string to match in the line | |
meaning | No | Symbol types to include | All |
root | Yes | Root directory for resolving relative paths |