swc/crates/jsdoc/tests/fixtures/instanceproperty.js

9 lines
135 B
JavaScript
Raw Normal View History

2020-08-14 12:20:25 +03:00
/** @class */
function Foo() {}
/** Set the bar. */
Foo.prototype.setBar = function(bar) {
/** The bar. */
this.bar = bar;
};