Boo.Lang.Compiler.Steps.ProcessMethodBodies.ProcessSystemTypeInvocation C# (CSharp) Метод

ProcessSystemTypeInvocation() приватный Метод

private ProcessSystemTypeInvocation ( MethodInvocationExpression node ) : void
node MethodInvocationExpression
Результат void
        private void ProcessSystemTypeInvocation(MethodInvocationExpression node)
        {
            var invocation = CreateInstanceInvocationFor(node);
            if (invocation.NamedArguments.Count == 0)
            {
                node.ParentNode.Replace(node, invocation);
                return;
            }
            ProcessNamedArgumentsForTypeInvocation(invocation);
            node.ParentNode.Replace(node, EvalForTypeInvocation(TypeSystemServices.ObjectType, invocation));
        }
ProcessMethodBodies