[Jsdoc-user] no jsdoc from valid javscript
Status: Inactive
Brought to you by:
mmathews
|
From: Henrik G. <he...@ma...> - 2006-07-27 20:52:34
|
If I have valid JavaScript like this:
var DED = function() {
var private_var;
function private_method() {}
return {
public_var: 1,
public_method : function() {}
};
}();
I dont get any jsdocs out:
Loading sources from test.js
Nothing to document, exiting
What can I do?
Using JSDoc-1.9.9.2
|