You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Eric Milles (Jira)" <ji...@apache.org> on 2019/11/03 18:58:00 UTC

[jira] [Commented] (GROOVY-9301) Parser error for enum constant with comma followed by method

    [ https://issues.apache.org/jira/browse/GROOVY-9301?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16965713#comment-16965713 ] 

Eric Milles commented on GROOVY-9301:
-------------------------------------

https://github.com/apache/groovy/pull/1063

> Parser error for enum constant with comma followed by method
> ------------------------------------------------------------
>
>                 Key: GROOVY-9301
>                 URL: https://issues.apache.org/jira/browse/GROOVY-9301
>             Project: Groovy
>          Issue Type: Bug
>          Components: parser-antlr2, parser-antlr4
>    Affects Versions: 2.4.17, 2.5.8, 3.0.0-rc-1
>            Reporter: Eric Milles
>            Priority: Major
>
> Consider the following:
> {code:groovy}
> enum Orientation {
>   LANDSCAPE, PORTRAIT,
>   
>   @Override
>   String toString() {
>      name().toLowerCase().capitalize()
>   }
> }
> println Orientation.values()
> {code}
> Parser error "unexpected token" for comma after PORTRAIT.  Remove comma and no issue.  Parsers support enum with trailing comma (no class members).
> See also GROOVY-4438 and GROOVY-8507



--
This message was sent by Atlassian Jira
(v8.3.4#803005)