Consider the following:
@interface Bar {
String one() default '1'
String two() default '2'
}
@interface Bars {
Bar[] value()
}
class C {
@Bars([@Bar(one='x'), @Bar(one = 'y', two = 'z')])
def m() {
}
}
There is no syntax coloring of annotation attributes "one" and "two".
Consider the following:
There is no syntax coloring of annotation attributes "one" and "two".