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?
|
|
|
|
|
|
|
There is a Code Metrics Explorer in the Enterprise Flex Plug-in below: |
||
|
|
|
|
Simple tool called LocMetrics can work for .as files too... |
||
|
|
|
|
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:
|
||
|
|
|
|
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. |
||
|
|
|
|
To get a rough estimate, you could always run |
||
|
|
