Doug McCune had created something that was exactly what I needed (http://dougmccune.com/blog/2007/05/10/analyze-your-actionscript-code-with-this-apollo-app/) but alas - it was for AIR beta 2. I just would like some tool that I can run that would provide some decent metrics...any idea's?
|
feedback
|
|
There is a Code Metrics Explorer in the Enterprise Flex Plug-in below: | |||
|
feedback
|
|
Or
Or if you use zsh
It won't give you what fraction of those lines are comments, or blank lines, but if you're only interested in how one project differs from another and you've written them both, it's a useful metric. | |||||
feedback
|
|
Here's a small script I wrote for finding the total numbers of occurrence for different source code elements in ActionScript 3 code (this is written in Python simply because I'm familiar with it, while Perl would probably be better suited for a regex-heavy script like this):
Pass paths to all of the source code files in your project as arguments for this script to get it to process all of them and report the totals. A command like this:
Will output something like this:
| |||
|
feedback
|
|
Simple tool called LocMetrics can work for .as files too... | |||
|
feedback
|
|
CLOC - http://cloc.sourceforge.net/. Even though it is Windows commandline based, it works with AS3.0, has all the features you would want, and is well-documented. Here is the BAT file setup I am using:
| ||||
|
feedback
|
|
To get a rough estimate, you could always run | |||
|
feedback
|