sch-cbavel

Results 2 issues of sch-cbavel

Fixes https://github.com/ngbinh/gradle-scalastyle-plugin/issues/34

https://github.com/rpau/javalang/blob/cacae3667dec88f9c2955858fa2a0fe1d73bc0d3/src/main/java/org/walkmod/javalang/ast/Node.java#L353-L367 Right now it is O(N^2) for the worst case where N is the nesting level. You can reduce one order of magnitude `O(3*N)` in the worst case. You just...