If you've got code like this:
(function () {
"use strict";
/**
* Creates a new test object
* @constructor
*/
var Test = function (test) {
..
}
Test.prototype.prepMsg = function (from, to, status, message) {
...
};
}
And try to create jsdocs from it, it gives "[WARNING] JSDoc Toolkit: Trying to
document prepMsg as a member of undocumented symbol Test." If you remove the
var, it doesn't give this error. This is a serious issue. Private variables
should be documented and documentation should be exported IMO...
Original issue reported on code.google.com by dieterbl...@gmail.com on 13 Mar 2012 at 12:30
Original issue reported on code.google.com by
dieterbl...@gmail.com
on 13 Mar 2012 at 12:30