easyappointments/rsc/scripts/jsdoc/test/fixtures/this2.js

15 lines
394 B
JavaScript

/** @constructor */
function TemplateBuilder(templateType) {
//** document me */
//this.templateType = templateType;
/** @constructor */
this.Template = function() { // nested constructor of constructor TemplateFactory
/** document me */
this.render = function(data) {
/** document me */
this.rendered = true;
}
};
}