(Node n)
| 186 | } |
| 187 | |
| 188 | public static void dump(Node n) { |
| 189 | try { |
| 190 | n.accept(new DumpVisitor()); |
| 191 | } catch (JasperException e) { |
| 192 | e.printStackTrace(); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | public static void dump(Node.Nodes page) { |
| 197 | try { |
nothing calls this directly
no test coverage detected