Returns the method name used by Groovy's MOP bridge methods. @return the synthetic MOP method name
()
| 267 | * @return the synthetic MOP method name |
| 268 | */ |
| 269 | public String getMopName() { |
| 270 | if (mopName == null) { |
| 271 | mopName = (isPrivate() ? "this" : "super") + '$' + getDeclaringClass().getSuperClassDistance() + '$' + getName(); |
| 272 | } |
| 273 | return mopName; |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * Invokes this method. |
no test coverage detected