swc/crates/jsdoc/tests/fixtures/instanceproperty.js
2021-11-10 16:39:01 +09:00

9 lines
135 B
JavaScript

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