[
https://issues.apache.org/jira/browse/JEXL-288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17224620#comment-17224620
]
Henri Biestro commented on JEXL-288:
------------------------------------
Changeset: c81db74a44b9a39a714140bc988031ce9c0a74d4
Author: henrib <[email protected]>
Date: 2020-11-02 13:11
Message: JEXL-288: fixing travis, test may fail when running on single
threaded env
> 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)