Is there a way to quickly find a complete list of code paths to one specific function in my project, to find out if any particular function calls the top link, directly or indirectly? For example, some possible output to determine if it is available MyLowLevelFunctionfrom TargetFunction:
Code Path 1
ModuleA2.TopLevelFunction
| --ModuleA1.SomeFunction
| ---- Utility.MyLowLevelFunction
Code Path 2
ModuleB2.TopLevelFunction
| --TargetModule.TargetFunction <- This calls MyLowLevelFunction indirectly
| ---- ModuleB1.SomeFunction
| ------ Utility.MyLowLevelFunction
source
share