JavaParser v3.10.0 Release Notes

    • slightly breaking: besides break; and break [label]; there is now break [expression]; like break 1+2; or break "bye!"; . That means that BreakStmt no longer has a label, it has a value which is of type Expression. This is to prepare for Java 12 switch expressions. You can find the details in the Javadoc.

    📜 issues resolved