Closed GoogleCodeExporter closed 8 years ago
This is a known limitation of the weak lexical analyser used by JSDoc. I
recommend against using the -a option if it is a problem, or, if you must have
-a, you could write that code in a form that is more obvious, like so:
/**
* @class
*/
MyClass = function(optin) {
var testFunc1 = function() {
alert("123");
}
function testFunc2() { alert("324"); }
testFunc.apply(this,[]);
}
Original comment by micmath
on 12 Dec 2010 at 9:17
Original issue reported on code.google.com by
julbm...@gmail.com
on 10 Dec 2010 at 2:54