Invokes the given method. @param name the name of the method to call @param args the arguments to use for the method call @return the result of invoking the method
(String name, Object args)
| 35 | * @return the result of invoking the method |
| 36 | */ |
| 37 | @Internal // marked as internal just for backward compatibility, e.g. AbstractCallSite.createGroovyObjectGetPropertySite will check `isMarkedInternal` |
| 38 | default Object invokeMethod(String name, Object args) { |
| 39 | return getMetaClass().invokeMethod(this, name, args); |
| 40 | } |
no outgoing calls