jsdoc/test/fixtures/instanceproperty.js
Jeff Williams 087f07dcd5 use the correct longname for properties documented in instance methods (#1011)
Fixes a regression caused by 65f307322ac64d965694dca8f82bf98f08a1e2e4.
2015-08-18 15:34:24 -07:00

9 lines
135 B
JavaScript

/** @class */
function Foo() {}
/** Set the bar. */
Foo.prototype.setBar = function(bar) {
/** The bar. */
this.bar = bar;
};