Invokes a method on the given receiver for the specified arguments. The sender is the class that invoked the method on the object. The MetaClass will attempt to establish the method to invoke based on the name and arguments provided. The isCallToSuper and fromInsideClass help the Groovy runti
(Class sender, Object receiver, String methodName, Object[] arguments, boolean isCallToSuper, boolean fromInsideClass)
| 52 | * @return The method's return value. |
| 53 | */ |
| 54 | Object invokeMethod(Class sender, Object receiver, String methodName, Object[] arguments, boolean isCallToSuper, boolean fromInsideClass); |
| 55 | |
| 56 | /** |
| 57 | * <p>Retrieves a property on the given receiver for the specified arguments. The sender is the class that is requesting the property from the object. |
no outgoing calls