Files
pmd/javacc-wrapper.xml
Clément Fournier 80a75a1f42 Change names of some methods to clarify overloading
This way you don't need to upcast a node to eg JavaNode
in order to call the next method to delegate:

```java
visit((JavaNode) node, data) -> visitJavaNode(node, data)
```

This prevents writing `visit(node, data)` and not being
sure what overload is called.
2020-07-23 16:29:52 +02:00

20 KiB