Consider the following:
import static Transient.getSomeThing as something
@java.lang.Deprecated
static def getSomeThing(a, b, c) {}
@groovy.transform.CompileStatic
void meth(x, y, z) {
something(x, y, z)
}
Syntax highlighting for the method call something is intruding into the argument list.

Consider the following:
Syntax highlighting for the method call something is intruding into the argument list.