(Writer newOut)
| 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; |