Fix the parser to construct annotated array type with the same hierarchy as expected
by the specification and the tree visitors.
More concretely, the type 'List<@A String @B [ ] @C [ ]>' should construct the
following tree construction:
List
\- typearg: @B [ ]
\- comp: @C [ ]
\- comp: @A String
by the specification and the tree visitors.
More concretely, the type 'List<@A String @B [ ] @C [ ]>' should construct the
following tree construction:
List
\- typearg: @B [ ]
\- comp: @C [ ]
\- comp: @A String
- relates to
-
JDK-6921979 add test program to verify annotations are attached to nodes as expected
- Closed