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 Foo() {
var bar = 1;
bar = 2; // redefining a private
this.baz = 1;
baz = 2; // global
/** a private */
var blap = {
/** in here */
tada: 1
}
}