Script to run JSDocToolkit over our JS files.
It creates a documentation directory under app/soc/content/js
with the output for private and public docs, with or without
undocumented functions.
/**
* @constructor
*/
function Outer() {
/**
* @constructor
*/
function Inner(name) {
/** The name of this. */
this.name = name;
}
this.open = function(name) {
return (new Inner(name));
}
}