groovy-eclipse
groovy-eclipse copied to clipboard
Rename of method or property does not rename quoted method call expression
Consider the following:
class C {
Number n
void meth(C that) {
"setN"(42)
this."setN"(42)
that."setN"(42)
}
}
Renaming property "n" does not in-turn rename the method call expressions that reference the property.