find_implementations
Finds all implementing types or subclasses for a given interface or class at a specified file position. Outputs list of implementing types with locations.
Instructions
Find implementations of an interface or extensions of a class.
USAGE: Position on a type (interface or class), find all implementors/subclasses OUTPUT: List of implementing/extending types with locations
IMPORTANT: Uses ZERO-BASED coordinates.
Requires load_project to be called first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Path to source file | |
| line | Yes | Zero-based line number | |
| column | Yes | Zero-based column number | |
| maxResults | No | Max implementations to return (default 100) |