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

Henri Biestro closed JEXL-288.
------------------------------

> Annotation can not be specified for a standalone statement
> ----------------------------------------------------------
>
>                 Key: JEXL-288
>                 URL: https://issues.apache.org/jira/browse/JEXL-288
>             Project: Commons JEXL
>          Issue Type: Improvement
>    Affects Versions: 3.1
>            Reporter: Dmitri Blinov
>            Assignee: Henri Biestro
>            Priority: Major
>             Fix For: 3.2
>
>
> It is expected that the following code
> {code:java}
> @Annotation while (true) {}
> {code}
> should be successfully parsed as the code below
> {code:java}
> @Annotation {while (true) {}}
> {code}
> The suggestion is to change the grammar for the annotated statement from
> {code:java}
> void AnnotatedStatement() #AnnotatedStatement() : {}
>  {
>     (LOOKAHEAD(<ANNOTATION>) Annotation())+ (LOOKAHEAD(<VAR>) Var() | 
> LOOKAHEAD(1) Block() | Expression())
>  }
> {code}
> to
> {code:java}
> void AnnotatedStatement() #AnnotatedStatement() : {}
>  {
>     (LOOKAHEAD(<ANNOTATION>) Annotation())+ (LOOKAHEAD(1) Block() | 
> Statement())
>  }
> {code}



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

Reply via email to