groovy-eclipse icon indicating copy to clipboard operation
groovy-eclipse copied to clipboard

Rename of method or property does not rename quoted method call expression

Open eric-milles opened this issue 6 years ago • 0 comments

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.

eric-milles avatar Dec 30 '19 18:12 eric-milles