instanceproperty.js 135 B

123456789
  1. /** @class */
  2. function Foo() {}
  3. /** Set the bar. */
  4. Foo.prototype.setBar = function(bar) {
  5. /** The bar. */
  6. this.bar = bar;
  7. };