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 have javascript file which contains a lot of global vars that are commented, but JSDoc keeps telling there is "Nothing to document, exiting".

Here is a sample:

/**
 * Name of the clients list
 * @type String
 * @final
 */
var CLIENTS_LIST_NAME = "Client";

Is there a way to generate documentation for such a .js file?

share|improve this question

1 Answer

It looks like you are using my old Perl-based project named JSDoc.pm. I would recommend for you to upgrade to my newer project named JsDoc Toolkit. The syntax of the newer project is mostly a superset of the tags used in the older project, but have a look at the wiki on the JsDoc Toolkit project for a complete list of all the supported tags.

The following will work in JsDoc Toolkit:

/**
 * Name of the clients list
 * @type String
 * @constant
 */
var CLIENTS_LIST_NAME = "Client";
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.