(namespace: string, view: string)
| 47 | } |
| 48 | |
| 49 | template(namespace: string, view: string): Hogan.Template { |
| 50 | return this.preCompiledTemplates[this.templateKey(namespace, view)]; |
| 51 | } |
| 52 | |
| 53 | private templateKey(namespace: string, view: string): string { |
| 54 | return `${namespace}-${view}`; |
no test coverage detected