I'd like to know how to document this type of class using jsdoc:
var MyObject = (function(){
var that = {};
function privateFunction(){};
that.publicFunction = function(){};
that.publicField = "foo";
return that;
})();
|
I'd like to know how to document this type of class using
|
||||
|
There are a number of things named JSDoc, but using closure compiler annotations which work with jsdoc toolkit, you can use
Then you can make it clear that
The first With the methods you can use the
|
|||||
|
that.publicFunction(){};? Maybe you need an=functionin there before the parentheses. – Mike Samuel Jun 21 '11 at 22:08publicFunctionproperty and apublicFieldproperty considered a class? Maybe there shouldn't be a{}at the end? – Mike Samuel Jun 21 '11 at 22:09publicFunctionstuff – Pablo Fernandez Jun 21 '11 at 22:20MyClasswould be more like a singleton object. Not going to use it with the 'new' keyword to create instances – Pablo Fernandez Jun 21 '11 at 22:22