The Bytecode Club
Call-tree viewer? - Printable Version

+- The Bytecode Club (https://the.bytecode.club)
+-- Forum: Lobby (https://the.bytecode.club/forumdisplay.php?fid=1)
+--- Forum: Programming (https://the.bytecode.club/forumdisplay.php?fid=86)
+--- Thread: Call-tree viewer? (/showthread.php?tid=1219)



Call-tree viewer? - roocoon - 05-26-2015

Hi.

Is there some utility available that could show where some method or constant is called from?
Not a precalculated cross-reference like Doxygen does but rather dynamic.
Similar to what Reflector for .NET does with its 'analyze' option.

Thank you.


RE: Call-tree viewer? - Bibl - 05-26-2015

well, you could edit the class file and insert a callback before a method call/constant load
not sure if there are any public ones.


RE: Call-tree viewer? - roocoon - 05-26-2015

I was afraid of that. Too bad there's not a faster way to do it.

Thank you for the help.