You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
x = B()
x.method()
Goto impl on x.method should also jump to B.method
Right now for a hierarchy like A->B->C, go to implementation only goes to B and C, I will make the behavior to be it goes to A, B, and C if A is not abstract, and B, C if A is abstract. That should fix this issue.
go to impl
orfind all impl
onA.method
should showC.method
as well.also, it should include
A.method
as well sinceA.method
can have implementation as well unless it is hard asabstract
The text was updated successfully, but these errors were encountered: