I want to see class, function and variable/property, dependencies visually, like NDepend, but for ActionScript 2 or AS3 code.
Any programs or ideas? (Use Doxygen in some way?, FlexUnit?)
|
5
|
|
|
|
|
|
I was going to post a link to Big Kahuna Burger's Link Report Visualizer, but I see that darrinm has found a much better tool. Still, could be of some use |
||
|
|
|
|
It lacks the visualization capabilities of NDepends but ItDepends "Visual browser for class and package dependencies in Flex applications" (http://code.google.com/p/it-depends/) is a big step up from trying to make sense of link reports. Its source is there so if one was sufficiently motivated it could be extended with visualizations. |
||
|
|
|
|
At runtime you an also get information about individual classes via the describeType method (Part of flash.utils). It returns an XML document that describes the class you give to it. |
||
|
|
|
|
The Flex SDK compilers have a See Examining Linker Dependencies from the Flex 3 documentation for more information. |
|||
|
|
|
|
Far from a complete solution, but to start you may want to use flex SDK ASDoc to generate the class path structure in a single XML (thanks to the -keep-xml -skip-xsl arguments). Thereafter you could probably get a nice result if you have a play with graphviz (http://www.graphviz.org/Resources.php). Automating it all via ANT and you're sorted ; ) |
||
|
|