GithubHelp home page GithubHelp logo

bem-jsd's People

Contributors

dfilatov avatar tadatuta avatar veged avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

skad0

bem-jsd's Issues

Add more functionality to jsd

At this time jsd hasn't enough functionality to parse jsdoc on bem-history@v2 and bem-mvc@v2.
There we can't generate jsDoc from code like:

/**
 * @exports
 * @class model
 * @augments events:Emitter
 * @bem
 */
var FIELD = MODEL.FIELD = inherit(events.Emitter, /** @lends FIELD.prototype */{ 
...
    /**
     * Some desc
     * @param {Object} params
     * @param {MODEL} model
     */
    someMethod: function(params, model) {
        ...
    }
});

(you can see this code here)

or

/**
 * @exports
 * @class uri
 * Creates a new Uri object.
 * @param {String} str
 */
function Uri(str) {
    this.uriParts = this.parseUri(str);
    this.queryParams = this.parseQuery(this.normalize(this.uriParts.query));
}

/**
 * Parse string and return Uri instance.
 * @param {String} str
 * @returns {Uri} Uri instance
 */
Uri.parse = function(str) {
    return new Uri(str);
};

/**
 * Normalizes a full url to percentage encoding.
 * @param {String} str input url
 * @returns {String}
 */
Uri.normalize = function(str) {
    return Uri.parse(str).toString();
};

(you can see this code here)

Can you please support such cases in jsd?

Comments without js-doc should be ignored, and not throw an error

Now because of the type plugin:

Error: Error: "Can not add property to non-object node" while processing jsdoc comments started at line 352
----------------------------------------------------------------------------------------------------
            /**
             * Кнопка не будет получать фокус, если у нее есть модификатор `_focus_no`.
             */
            yes: function() {

                return this.hasMod('focus', 'no') ? false : this.__base.apply(this, arguments);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.