ignore.js 131 B

12345678910
  1. /**
  2. * A test constructor.
  3. * @constructor
  4. * @ignore
  5. */
  6. function Ignored() {
  7. /** a method */
  8. this.bar = function() {
  9. }
  10. }