MaketRandevu/rsc/scripts/jsdoc/test/fixtures/this2.js
2013-07-02 17:20:39 +00:00

15 lines
No EOL
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;
}
};
}