I have parent class Parent with method getToken(). And I have its child class – ChildA and ChildB, which don’t override method getToken().
How I can search usages of method getToken() which used by instance of class ChildA?
Sorry for my English. Thanks!
You can add
getToken()toChildA, perform the search only for this method, then delete it. Another way is to use Structural Search and Replace.