javalang icon indicating copy to clipboard operation
javalang copied to clipboard

Java 8 parser

Results 3 javalang issues
Sort by recently updated
recently updated
newest added

There was a problem in the begin and end position of a MultiTypeParameter. Their values were the same as in the CathClause.

enhancement

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...