Boo.Lang.Compiler.Steps.ProcessMethodBodies.PostNormalizeExtensionInvocation C# (CSharp) Method

PostNormalizeExtensionInvocation() private method

private PostNormalizeExtensionInvocation ( MethodInvocationExpression node, IMethod targetMethod ) : void
node Boo.Lang.Compiler.Ast.MethodInvocationExpression
targetMethod IMethod
return void
        private void PostNormalizeExtensionInvocation(MethodInvocationExpression node, IMethod targetMethod)
        {
            node.Target = CodeBuilder.CreateMethodReference(node.Target.LexicalInfo, targetMethod);
        }
ProcessMethodBodies