有没有办法在我的项目中快速搜索到一个特定函数的完整代码路径列表,以便找出某个特定的上层函数是否直接或间接调用它?例如,一些可能的输出来确定是否MyLowLevelFunction
可以从TargetFunction
:
代码路径 1
ModuleA2.TopLevelFunction |--ModuleA1.SomeFunction |----Utility.MyLowLevelFunction
代码路径 2
ModuleB2.TopLevelFunction |--TargetModule.TargetFunction <-- 这会间接调用 MyLowLevelFunction |----ModuleB1.SomeFunction |-----Utility.MyLowLevelFunction