Loading...
Logo
Processing Forum
Hello, 

I am not quite sure whether this is the right forum. 

I am looking for a tool that is able to analyze my Code.
It should be able to tell
* tell there's a global Var you don't use
* tell there's a Function you don't use
* to give a graphical outline of the dependencies of all functions (even when they're in different Tabs)

Is there a tool like this?

Thank you very much!

Greetings, Chris

Replies(2)

Eclipse (and probably the other IDEs) can do that.
It marks unused (private) variables and functions, and it can show the chain of calls (who calls a function?, at any depth).
I didn't know that.
Thank you very much!

Chris