Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
share|improve this question
I have no JSDoc experience, but maybe it's expecting testUtils#testObject#connection? BTW documenting a private variable is weird. – Domenic Apr 26 '12 at 7:42
@Domenic already tested that stuff, good because the warning disappear, but no luck because no trace of my object in the documentation output – vogloblinsky Apr 26 '12 at 8:16
are you sure JSDoc supports documenting private variables? – Domenic Apr 26 '12 at 13:16
I think, there is a @private tag in the doc – vogloblinsky Apr 26 '12 at 15:28
OK, I'm out of ideas then :) – Domenic Apr 26 '12 at 16:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.