Static code analysis tools
Posted
by Anil Namde
on Stack Overflow
See other posts from Stack Overflow
or by Anil Namde
Published on 2010-01-21T07:16:24Z
Indexed on
2010/05/19
11:00 UTC
Read the original article
Hit count: 250
Whether JavaSript, C# or C++ main problem i face while reading the code is which function is called by which function. This problem is big when dealing with BIG code. Is there any static code analysis tool/technique/plugins using which a graphical representation of the code can be generated(something like below) so that reading/analyzing code becomes easy?
.... --outerFuntion() ---innerFunction() ----innerFunction2() --outerFunction2() ....
Please provide your inputs/opinions on this Thanks all,
© Stack Overflow or respective owner