resolve_at
Resolve a file, line, and column to a canonical handle for navigating to specific code locations from stack traces or error reports.
Instructions
Python: Resolve a (file, line, column) position to a canonical Handle.
Used when you have coordinates (from a stack trace, error report, or pasted excerpt) rather than a name. Returns the same shape as resolve().
Args: file: Absolute or project-relative path to the source file. line: 1-indexed line number. column: 0-indexed column number. Pass 0 for the start of the line — this is valid; do not coerce to a default. project_path: Project root path (default: current directory)
Returns: ResolveResult dict (see resolve() for shape).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | ||
| line | Yes | ||
| column | Yes | ||
| project_path | No | . |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||