[TSP] Goto implementation doesn't work for Pyrefly
fixed in next version (main)repro workspace
Setup Pylance to use Pyrefly as a diagnostics source.
Have this code:
```python
# Right click on BaseWithConcreteMethod.method and select `Go To Implementations` or `Find All Implementations`,
# All methods are shown: BaseWithConcreteMethod.method, Intermediate.method, Derived2.method.
class BaseWithConcreteMethod(ABC):
def method(self):
...
class Intermediate(BaseWithConcreteMethod):
def method(self):
pass
class Derived2(Intermediate):
def method(self):
pass
```
Goto implementation on the 'method' sites.
Expected result:
It finds all of the implementations.
Actual result:
It only goes to the one clicked on.
1 条评论