Consider the following:
package pack
class Util {
...
static def getSomething() { ... }
static void setSomething(value) { ... }
}
import static pack.Util.*
def thing = something
something = null
Semantic highlight of the property versions of getSomething and setSomething are incorrect.
Consider the following:
Semantic highlight of the property versions of
getSomethingandsetSomethingare incorrect.