Consider the following: ```groovy class C { C(p) { setP(p) } void setP(p) { ... } } ``` Applying "Replace method call with property expression" (Ctrl+Shift+,) to "setP" results in "p = p" which no longer references the property. 
Consider the following:
Applying "Replace method call with property expression" (Ctrl+Shift+,) to "setP" results in "p = p" which no longer references the property.