jsdoc 0.15.0

JsDoc parser writen in rust
Documentation
/**
    My test module.
    @module my/module
 */
define(function() {

    /**
        @undocumented
        @alias module:my/module
     */
    var mod = {

        /** Document a property. */
        myProperty: "foo",

        /** Document a method. */
        myMethod: function() {}
    };

    return mod;
});