Selects a method by name and argument classes. This method does not search for an exact match, it searches for a compatible method. For this the method selection mechanism is used as provided by the implementation of this MetaClass. pickMethod may or may not be used during the method selection proce
(String methodName, Class[] arguments)
| 4198 | * @throws GroovyRuntimeException if there is more than one matching method |
| 4199 | */ |
| 4200 | @Override |
| 4201 | public MetaMethod pickMethod(String methodName, Class[] arguments) { |
| 4202 | return getMethodWithoutCaching(theClass, methodName, arguments, false); |
| 4203 | } |
| 4204 | |
| 4205 | /** |
| 4206 | * indicates is the metaclass method invocation for non-static methods is done |
no test coverage detected