[Jsdoc-user] Does JSDoc support documenting JSON classes
Status: Inactive
Brought to you by:
mmathews
|
From: Ahmed J. <ahm...@gm...> - 2007-08-23 23:12:21
|
If I have the following singleton object, JSDoc doesn't produce any
documentation for it?
/**
* My class foo
*/
var foo = {
/**
* Bar function
*/
bar: function() {
}
}
Does JSDoc only work with functions defined starting with the function
keyword?
|