Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: 4.0
-
Component/s: parser-antlr
-
Labels:None
-
Number of attachments :
Description
It would be great to have a possibility to omit parentheses in closure annotations like this:
@Require({it > 2})
def myMethod() {
...
}
and after change:
@Require {it > 2}
def myMethod() {
...
}