Sets a property on the given receiver for the specified arguments. The sender is the class that is setting the property from 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
(Class sender, Object receiver, String property, Object value, boolean isCallToSuper, boolean fromInsideClass)
| 85 | * @param fromInsideClass Whether the call was invoked from the inside or the outside of the class |
| 86 | */ |
| 87 | void setProperty(Class sender, Object receiver, String property, Object value, boolean isCallToSuper, boolean fromInsideClass); |
| 88 | |
| 89 | /** |
| 90 | * |
no outgoing calls