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
Feature description or problem with existing feature
Today we already have the "Find all References" option that works correctly to find methods, but when it is used in a method that was inherited from an interface it finds all the references of all classes that use that interface, it would be very useful if there was an option to be able to find only direct references to the method of a specific class
Describe the solution you'd like
As an example is the code below
In the example above, pokemon 1 Flareon used fireMove(), but when using "Find All References" in the Flareon class it also shows Charizard's references, in this case it would be very useful an option to find only Flareon's references using fireMove(), ignoring the by Charizard
Removing the interface implementation from both classes makes this happen, but of course I can't keep removing interfaces in the code just to achieve this
Additional context
The text was updated successfully, but these errors were encountered:
Feature description or problem with existing feature
Today we already have the "Find all References" option that works correctly to find methods, but when it is used in a method that was inherited from an interface it finds all the references of all classes that use that interface, it would be very useful if there was an option to be able to find only direct references to the method of a specific class
Describe the solution you'd like
As an example is the code below
In the example above, pokemon 1 Flareon used fireMove(), but when using "Find All References" in the Flareon class it also shows Charizard's references, in this case it would be very useful an option to find only Flareon's references using fireMove(), ignoring the by Charizard
Removing the interface implementation from both classes makes this happen, but of course I can't keep removing interfaces in the code just to achieve this
Additional context
The text was updated successfully, but these errors were encountered: