I have a huge project. Let us focus on 2 Classes in that project - Class1 and Class2. Let Class1 have method1() and Class2 have method2().
I want to check if method2() is reachable from method1() in any way.
One way is to do "find usages" on method2() and then keep on scanning the calls till we reach method1() ( or if we never reach method1() ).
Note : The duplicate that this question marked to does not gives answer my problem . I don't want any shortcut for the above process. I need an alternative less time consuming way.
Is there any other better way in IntelliJ to do this ?