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

TryToProcessAsExtensionInvocation() private method

private TryToProcessAsExtensionInvocation ( MethodInvocationExpression node ) : bool
node MethodInvocationExpression
return bool
        private bool TryToProcessAsExtensionInvocation(MethodInvocationExpression node)
        {
            IEntity extension = ResolveExtension(node);
            if (null == extension) return false;

            node.Annotate(ResolvedAsExtensionAnnotation);

            ProcessMethodInvocationExpression(node, extension);
            return true;
        }
ProcessMethodBodies