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

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

private PostNormalizeExtensionInvocation ( MethodInvocationExpression node, IMethod targetMethod ) : void
node Boo.Lang.Compiler.Ast.MethodInvocationExpression
targetMethod IMethod
Результат void
        private void PostNormalizeExtensionInvocation(MethodInvocationExpression node, IMethod targetMethod)
        {
            node.Target = CodeBuilder.CreateMethodReference(node.Target.LexicalInfo, targetMethod);
        }
ProcessMethodBodies