jsdoc/test/fixtures/lends5.js
Jeff Williams 4e3e4a0151 fix lends tag inside nested function calls (#565)
plus some minor test cleanup
2014-02-23 20:16:16 -08:00

16 lines
334 B
JavaScript

(function() {
/**
* @class Person
*/
function Person(name) {}
Person.prototype = Object.create(null, /** @lends Person.prototype */ {
/** Speak a message. */
say: function(message) {
return this.name + " says: " + message;
}
});
this.Person = Person;
}).call(this);