(Root n)
| 550 | } |
| 551 | |
| 552 | @Override |
| 553 | public void visit(Root n) throws JasperException { |
| 554 | output.append(n.getType()); |
| 555 | output.append('{'); |
| 556 | n.getExpression().visit(this); |
| 557 | output.append('}'); |
| 558 | } |
| 559 | |
| 560 | @Override |
| 561 | public void visit(Function n) throws JasperException { |
nothing calls this directly
no test coverage detected