get_symbols_in_scope
Retrieve all visible symbols (variables, types, functions) at a specific location in a TypeScript/JavaScript file. Specify the root directory, file path, and line number to analyze code context effectively.
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 |