(Template template, final TemplateHashModel rootDataModel, Writer out)
| 155 | } |
| 156 | |
| 157 | public Environment(Template template, final TemplateHashModel rootDataModel, Writer out) |
| 158 | { |
| 159 | super(template); |
| 160 | this.globalNamespace = new Namespace(null); |
| 161 | this.currentNamespace = mainNamespace = new Namespace(template); |
| 162 | this.out = out; |
| 163 | this.rootDataModel = rootDataModel; |
| 164 | importMacros(template); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Retrieves the currently processed template. |
nothing calls this directly
no test coverage detected