When I used CLOC on a Actionscript project folder there seems to be something wrong with the line count. For the project I'd expect something like a couple of thousand lines of code, but I get this:
27 text files.
27 unique files.
Using temp dir [/var/folders/Iv/IvtpxxljEvmq44ihKLV3UU+++TI/-Tmp-/I2_EYvn0vb] \
to install Regexp::Common
1 file ignored.
http://cloc.sourceforge.net v 1.56 T=0.5 s (52.0 files/s, 296.0 lines/s)
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
ActionScript 26 38 26 84
-------------------------------------------------------------------------------
SUM: 26 38 26 84
-------------------------------------------------------------------------------
So I browsed to the folder of a downloaded Actionscript 3D library and did the same command there and it seems to count just fine.
Also the tool seems to count my PHP or Javascript just fine, but just not the Actionscript.
I played around with different options, but can't seem to figure out why it is not counting properly. From the looks of it, it counts one comment per file (the file count and the counted file names are ok), which makes me wonder if there is something wrong with the way comments are detected, or line breaks. (Mac OS X here, the files are all in unicode.)
Anyone got an idea?
Edit: I also made a single file to just test the counting and for this alone it works fine:
/**
* a description
*/
package com.foo.bar {
public class Foobar {
// really no, this is a comment
private var lorem:String = "ipsum";
/**
* OMG, it's a constructor
*/
public function Foobar() {
}
private function ladida():Boolean {
// yes, genius
return true;
}
}
}
With CLOC tracing to the console:
http://cloc.sourceforge.net v 1.56 T=0.5 s (2.0 files/s, 50.0 lines/s)
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
ActionScript 1 7 8 10
-------------------------------------------------------------------------------