Boo.Lang.Compiler.Steps.ImplementICallableOnCallableDefinitions.CreateInvokeInvocation C# (CSharp) Method

CreateInvokeInvocation() private method

private CreateInvokeInvocation ( InternalCallableType type ) : MethodInvocationExpression
type Boo.Lang.Compiler.TypeSystem.InternalCallableType
return Boo.Lang.Compiler.Ast.MethodInvocationExpression
        MethodInvocationExpression CreateInvokeInvocation(InternalCallableType type)
        {
            return CodeBuilder.CreateMethodInvocation(
                                CodeBuilder.CreateSelfReference(type),
                                type.GetInvokeMethod());
        }