I'm currently developing an Abstracty Syntax Tree visitor for a lombok.ast tree that should print as plain text, in a given OutputStream object, the structure of my AST.
In order to speed up the debugging phase, is there any test source code that already contains most (if not all) of the Java constructs? There are so many special cases and weird, unusual (but still possible) things that it's even too easy to forget many of them.
It doesn't have to be exactly thought as a test case, any source code with a lot of complexity and variety will suffice.
Thanks in advance to anyone.
EDIT: Does anyone know if there's a way to understand when the visit of a lombok.ast ends?