node-query/node_modules/jsdoc/test/fixtures/this.js

10 lines
218 B
JavaScript
Raw Normal View History

2014-10-20 16:56:45 -04:00
/**
@constructor
*/
function Singer() {
this.tralala = function() { // method of constructor Singer
/** document me */
this.isSinging = true; // setting a member of constructor Singer
};
}