Boo.Lang.Compiler.Steps.ProcessMethodBodies.PostNormalizeExtensionInvocation C# (CSharp) Méthode

PostNormalizeExtensionInvocation() private méthode

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