jsdoc 0.15.0

JsDoc parser writen in rust
Documentation
/**
* @module my/module
*/
(function() {

/** document fooIn */
fooIn = function() {
};

/** @namespace */
bar = {
    /** document bar.Zop */
    zop: function() {
    }
}

/** @constructor */
exports.Frotz = function() {
    /** document exports.Frotz#quaz */
    this.quaz = 1;
}

}) ();

/** document fooOut
*/
fooOut = function() {
};