* It does NOT invoke any methods, even if a meta method was found for the call.
*/
public Object invokeMethod(String name, Object args) {
if (!this.isStackInitialized()) this.initializeStack();
Object[] arguments = InvokerHelper.asArray(args);
return interceptor.handleInvokedMethod(new InterceptorContext( this, this.getStack(), name, arguments ));
}