How to jsdoc annotate BackboneJS code?
问题 Has anyone ever documented BackboneJS code with JSDoc? I'm having problems annotating Backbone constructs such as: User = Backbone.Model.extend({ defaults: { a: 1 }, initialize: function () { // ... }, doSomething: function (p) { // ... } }); Any advice appreciated. Thanks. 回答1: I think it works somehow like this, if you're talking about the JSDoc Toolkit: User = Backbone.Model.extend( /** @lends User.prototype */ { /** * @class User class description * * @augments Backbone.Model *