-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[java] Move annotations inside the node they apply to #1875
[java] Move annotations inside the node they apply to #1875
Conversation
I added a lengthy test case for type annotations that includes all contexts where type annotations may appear for exhaustiveness. It's based off the spec of type annotations. There are a few cases where type annotations are legal that this PR fixes
There are two cases which we currently don't handle:
Note that this representation is both more economic in number of nodes (especially in the most common case where there are no annotations on the array dimensions), and also preserves every intermediary array type, which is nice. |
Fixes some failing tests
* | ||
* @author Clément Fournier | ||
*/ | ||
interface JSingleChildNode<T extends JavaNode> extends JavaNode { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it important, that the interface starts with the prefix "J"? We don't usually do this...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I only did this, because this interface is equivalent to one that is introduced in #1622, and I want to avoid the name clash. When that PR is merged we can remove this one.
* https://checkerframework.org/jsr308/java-annotation-design.html#type-names | ||
* is particularly interesting | ||
*/ | ||
public class ParserCornerCases18 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably rename this class to avoid confusion 😄
Do we have annotated method declarations covered? Like
@Override
public void run() { }
@oowekyala |
Annotations are now part of the node they apply to, which fixes a lot of inconsistencies, where sometimes the annotations are inside the node, and sometimes just somewhere in the parent, with no real structure.
Implementation is another jjtree tweak, which allows avoiding looking ahead past the annotations. The annotations are just marked as "pending", and then adopted by the next node to be opened (be it a class or method declaration, whatever).
This makes some nodes completely redundant, which can later be turned into interfaces or removed: TypeDeclaration, ClassOrInterfaceBodyDeclaration, AnnotationTypeBodyDeclaration, and BlockStatement (which for now contains the annotations of a local class for example)
Some examples:
Top-level type declaration
Cast expression
N/A (Parse error)
Notice how
T
is not ambiguous anymore.Cast expression with intersection
+CastExpression +MarkerAnnotation "A" + +IntersectionType +ClassOrInterfaceType "T" +ClassOrInterfaceType "S" +(Expression `expr`)
Notice
@A
binds toT
, notT & S
Constructor call
Array allocation
Array type
N/A (parse error)
Notice
@A
binds toint
, notint[]
Type parameters
+TypeParameters +MarkerAnnotation "A" +TypeParameter "T" +MarkerAnnotation "B" +TypeParameter "S" +MarkerAnnotation "C" +TypeBound - +ReferenceType +ClassOrInterfaceType "Object"
Enum constants