MCPcopy Index your code
hub / github.com/apache/groovy / invoke

Method invoke

src/main/java/org/codehaus/groovy/runtime/Reflector.java:30–32  ·  view source on GitHub ↗
(CachedMethod method, Object object, Object[] arguments)

Source from the content-addressed store, hash-verified

28public class Reflector {
29
30 public Object invoke(CachedMethod method, Object object, Object[] arguments) {
31 return noSuchMethod(method, object, arguments);
32 }
33
34 protected Object noSuchMethod(CachedMethod method, Object object, Object[] arguments) {
35 throw new MissingMethodException(method.getName(), method.getDeclaringClass().getTheClass(), arguments, false);

Callers 12

configureAnnotationMethod · 0.45
rootLoaderMethod · 0.45
groovyToStringMethod · 0.45
replaceExpressionMethod · 0.45
getExpressionMethod · 0.45
evaluateExpressionMethod · 0.45
invokeStringMemberMethod · 0.45
AsyncSupportClass · 0.45
runMethod · 0.45
startThreadMethod · 0.45

Calls 1

noSuchMethodMethod · 0.95

Tested by

no test coverage detected