(N node)
| 140 | } |
| 141 | |
| 142 | private void dumpNode(N node) { |
| 143 | dumpElement(node, this::nodeToString, nodeLabeler, nodeAttributer); |
| 144 | } |
| 145 | |
| 146 | private String nodeToString(N node) { |
| 147 | return "\"" + nodeToString.apply(node) + "\""; |
nothing calls this directly
no test coverage detected