R – Lexagraphically find uncalled functions in Flex/AS3

actionscriptapache-flex

I am aware of the FlexCover project, but I want a code analyzer that finds the functions (and classes, I suppose) that have no calls to them at all in the source code.

I suppose I could comment them out one-by-one, but that way lies madness.

It's more than just tidiness: we have many versions of the same functionality and maintaining un-needed versions prevents us from getting rid over several classes and protocols that Really Need To Go Away.

Thanks

Best Answer

You might find this helpful:

http://opensource.adobe.com/wiki/display/flexpmd/FlexPMD

Good luck.

Related Topic