You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Paul King (JIRA)" <ji...@apache.org> on 2017/01/28 07:06:24 UTC

[jira] [Updated] (GROOVY-5318) generic types in fully-qualified class names parsing error

     [ https://issues.apache.org/jira/browse/GROOVY-5318?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul King updated GROOVY-5318:
------------------------------
    Fix Version/s: 2.5.0-beta-1

> 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)