jsdoc 0.15.0

JsDoc parser writen in rust
Documentation
/** @module test */

/** Test class */
export default class {
    /**
     * Test constructor
     * @param {string} foo - The foo parameter
     */
    constructor(foo) {
        /** Test member */
        this.foo = foo;
    }

    /** Test method */
    test() {}

    /** Test static method */
    static staticTest() {}
}