[
https://issues.apache.org/jira/browse/GROOVY-5318?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15843952#comment-15843952
]
Paul King commented on GROOVY-5318:
-----------------------------------
I merged the PR for the 2.5.x stream and updated fix version appropriately. Not
for inclusion in parrot branch which tackles the issue in the grammar. We'll
have a slightly different error message at that point but I think that is
acceptable.
> generic types in fully-qualified class names parsing error
> ----------------------------------------------------------
>
> Key: GROOVY-5318
> URL: https://issues.apache.org/jira/browse/GROOVY-5318
> Project: Groovy
> Issue Type: Bug
> Components: parser
> Affects Versions: 1.8.6
> Environment: Groovy 1.8.6 on Java 7
> Reporter: Gavin Grover
> Assignee: Daniel Sun
> Priority: Minor
> Fix For: 3.0, 2.5.0-beta-1
>
>
> The following code compiles and runs in Groovy 1.8.6...
> {code}
> def a= new java.util<Integer>.ArrayList<ArrayList<Integer>>()
> {code}
> The parser allows a generic type after each name in the fully-qualified class
> name. The generic type should only be after the final name.
> The relevant part of the Antlr parser that needs fixing is:
> {code}
> typeParameters: LT typeParameter (COMMA typeParameter)*
> (typeArgumentsOrParametersEnd)?
> typeParameter: IDENT (typeParameterBounds)?
> typeParameterBounds: "extends" classOrInterfaceType (BAND!
> classOrInterfaceType)*
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)