MCPcopy Create free account
hub / github.com/apache/freemarker / render

Method render

src/main/java/freemarker/core/Environment.java:242–251  ·  view source on GitHub ↗
(Writer newOut)

Source from the content-addressed store, hash-verified

240 else {
241 nested = new TemplateDirectiveBody() {
242 public void render(Writer newOut) throws TemplateException, IOException {
243 Writer prevOut = out;
244 out = newOut;
245 try {
246 Environment.this.visit(element);
247 }
248 finally {
249 out = prevOut;
250 }
251 }
252 };
253 }
254 final TemplateModel[] outArgs;

Callers

nothing calls this directly

Calls 1

visitMethod · 0.80

Tested by

no test coverage detected