MCPcopy Create free account
hub / github.com/apache/groovy / call

Method call

src/main/java/groovy/lang/Closure.java:515–518  ·  view source on GitHub ↗

Invokes the closure with no arguments, returning any value if applicable. @return The value if applicable or null if there is no return statement in the closure.

()

Source from the content-addressed store, hash-verified

513 * @return The value if applicable or null if there is no return statement in the closure.
514 */
515 @Override
516 public V call() {
517 return call(EMPTY_OBJECT_ARRAY);
518 }
519
520 /**
521 * Invokes the closure with given argument(s), returning any value if applicable.

Callers 15

configureMethod · 0.95
cleanupMethod · 0.95
buildMethod · 0.95
invokeMethodMethod · 0.95
traverseMethod · 0.95
createBindingMethod · 0.95
testTrampolineMethod · 0.95
verifyMethod · 0.95

Calls 9

rethrowMethod · 0.95
throwRuntimeExceptionMethod · 0.95
getClassMethod · 0.80
getMethod · 0.65
invokeMethodMethod · 0.65
getMetaClassMethod · 0.65
setMethod · 0.45
invokeMethod · 0.45
getCauseMethod · 0.45