jsdoc/test/fixtures/this2.js
Jeff Williams 48e6c392d5 huge whitespace cleanup
- remove all trailing whitespace
- for consistency, replace all tabs with spaces
2014-03-03 07:43:01 -08:00

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