There are times when I need to find all the components that are calling a particular method.
For example, I need to find everything that calls this method
Code: Select all
mthroutine name(SwitchToBurden) access(*PUBLIC)
* code omitted
endroutine
I can F2 that method and see it the features window and the Usage only shows it in the context of the current component, and in this case its just the definition.

- features_window.PNG (21.56 KiB) Viewed 47258 times
Since that does not help, I have to go to the cross references, and open EVERY SINGLE OBJECT displayed and look for that particular method call.

- cross_references.PNG (31.23 KiB) Viewed 47258 times
My other option is to change the method name and recompile everything to get anything that calls that method to break.
It would be much better and more developer friendly IMHO if the Features window (or something else) could show what is calling that particular thing, in this case a method. Something like Visual Studio's and Resharper's Find Usages.
Anyone know of a better/different way to find the usage of a method in the VL IDE?