The Bytecode Club

Full Version: Call-tree viewer?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
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.
I was afraid of that. Too bad there's not a faster way to do it.

Thank you for the help.