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