Static code analysis tools
- by Anil Namde
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,