I am using jsdoc toolkit for documenting a project, and i am inside an issue documenting a private object inside another private object.
i got this warning:
WARNING: Trying to document connection as a member of undocumented symbol testObject.
But the testObject appears well in my Docs ouput as a ' {Object} testObject '
Here is the javascript file test:
/*
* @fileOverview Various Test functions.
* @author Regards
*/
/**
* @description testUtilsNameSpace 'namespace' helps
* @name testUtils
* @type Object
* @namespace
**/
(function($) {
'use strict';
/**
* @description minPageReached private var
* @private
* @type number
* @name testUtils#minPageReached
* @field
*/
var minPageReached = 0;
/**
* @description maxPageReached public var
* @type number
*/
testUtils.maxPageReached = 0;
/**
* @description testPrivate private function
* @inner
* @param {page} page Info on the page you want to request
* @type Function
* @memberOf testUtils
*/
var testPrivate = function(page){
console.log("testPrivate");
};
/**
* @description testPublic public function
* @param {page} page Info on the page you want to request
* @type Function
* @memberOf testUtils
*/
testUtils.testPublic = function(page){
console.log("testPublic");
}
/**
* @description loadDependencies function
* @type Function
* @memberOf testUtils
*/
var loadDependencies = function() {
};
/**
* @description testObject
* @private
* @field
* @name testUtils#testObject
* @type Object
*/
var testObject = {
/**
* @description connection object
* @field
* @name testObject#connection
* @type Object
*/
connection: {
}
}
})(window.jQuery);
testUtils#testObject#connection? BTW documenting a private variable is weird. – Domenic Apr 26 '12 at 7:42