Calculate Average Lines of Code per Method for Javascript - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T05:32:37Zhttp://stackoverflow.com/feeds/question/100661http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/100661/calculate-average-lines-of-code-per-method-for-javascript2Calculate Average Lines of Code per Method for JavascriptKarl2008-09-19T09:12:34Z2009-11-16T04:23:44Z
<p>Are there any tools available for calculating the <strong>average number of lines of code per method</strong>?</p>
<p>I want to know the average size of each method, not just the total number of lines in the project. The per method count will allow me to measure how simple each method is.</p>
<p>This will be calculated as part of the build process, and displayed on a dashboard. The idea being that we can see if the average size of each method is increasing. And this will flag the possibility that code complexity is increasing and we may need to think about refactoring.</p>
http://stackoverflow.com/questions/100661/calculate-average-lines-of-code-per-method-for-javascript/100750#1007500Answer by PhiLho for Calculate Average Lines of Code per Method for JavascriptPhiLho2008-09-19T09:33:51Z2008-09-19T09:33:51Z<p>I am not sure if it does that, but searching, after your previous post, what is cyclomatic complexity, I went to the related Wikipedia page which pointed to <a href="http://www.geocities.com/sivaram_subr/codeanalyzer/description.htm" rel="nofollow" title="Code Analyzer">Code Analyzer</a>.
There they say:</p>
<blockquote>
<p>When counting for HTML or JSP files, it will count LoC correctly for
javascript and vbscript code embedded within the <script> tag.</p>
</blockquote>
<p>I don't know if this count is dispatched per method, but it might be worth taking a look (it is a free tool).</p>
http://stackoverflow.com/questions/100661/calculate-average-lines-of-code-per-method-for-javascript/100753#1007530Answer by michel_de_becdelievre for Calculate Average Lines of Code per Method for Javascriptmichel_de_becdelievre2008-09-19T09:35:31Z2008-09-19T09:35:31Z<p>short fast and dirty : grep for ";", count the number of lines, this will give you an estimate of the number of statements.</p>
http://stackoverflow.com/questions/100661/calculate-average-lines-of-code-per-method-for-javascript/100866#1008661Answer by Marius for Calculate Average Lines of Code per Method for JavascriptMarius2008-09-19T10:03:48Z2008-09-19T14:28:42Z<p>Do a recursive "for(i in this)" search through your project, and if the object (i) is a function, call "test.toString().split("\n").length". This counts the number of newlines in the function. If it is not a function, but an object, call this function in that object. Also count the number of functions you find, and then divide the total number of newlines by the total number of functions, and then you have the average.</p>
<p><strong>Edit</strong></p>
<pre><code>function calculateMethodSize(obj){
var fcount = 0;
var fsize = 0;
for(i in obj){
if(obj[i] instanceof Function){
fcount++;
fsize += obj[i].toString().split(";\n").length;
}else if(obj[i] instanceof Object){
var ret = calculateMethodSize(obj[i]);
fcount += ret.fcount;
fsize += ret.fsize;
}
}
return {fsize:fsize, fcount:fcount};
}
var data = calculateMethodSize(this);
var average = data.fsize / data.fcount;
</code></pre>
<p>Be careful running this code though. If you run it with this, as I have done, then you might get a stack overflow (I did).</p>
http://stackoverflow.com/questions/100661/calculate-average-lines-of-code-per-method-for-javascript/102370#1023700Answer by EndangeredMassa for Calculate Average Lines of Code per Method for JavascriptEndangeredMassa2008-09-19T14:40:23Z2008-09-19T14:40:23Z<p>Define lines as either "\n" or ";",</p>
<p>You could try a simple algorithm like the following:</p>
<pre><code>FOR each line in a javascript file (or chunk of text)
IF the line starts with "function " THEN
PUSH the first left-curly brace you find onto a stack
WHILE the stack is non-empty
PUSH any left-curly braces in the current line
POP any left-curly braces when you encounter a right-curly brace
Increment your line-count by 1
Increment your line counter (as mentioned in the FOR loop above)
END WHILE
Store your total lines for this function
ELSE
//ignore the line because it's probably a global var or blank
END IF
END FOR
</code></pre>
<p>I don't know of a tool that can do this automatically. But, it would be fun to try to make one yourself.</p>
http://stackoverflow.com/questions/100661/calculate-average-lines-of-code-per-method-for-javascript/1740032#17400320Answer by just somebody for Calculate Average Lines of Code per Method for Javascriptjust somebody2009-11-16T04:23:44Z2009-11-16T04:23:44Z<p>you probably want to clue in other metrics as well. any way you count the lines,
just make sure it does not croak in face of functions defined without the "function" keyword or curly braces. real-world example:</p>
<pre><code>var negate = bind1st(compose, not);
</code></pre>
<p>(here negate is a function built from functions bind1st, compose and not)</p>