Boo.Lang.Compiler.Steps.ImplementICallableOnCallableDefinitions.CreateInvokeInvocation C# (CSharp) Méthode

CreateInvokeInvocation() private méthode

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