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

ResolveRuntimeOperator() protected method

protected ResolveRuntimeOperator ( BinaryExpression node, string operatorName, MethodInvocationExpression mie ) : bool
node BinaryExpression
operatorName string
mie MethodInvocationExpression
return bool
        protected virtual bool ResolveRuntimeOperator(BinaryExpression node, string operatorName, MethodInvocationExpression mie)
        {
            return ResolveOperator(node, TypeSystemServices.RuntimeServicesType, operatorName, mie);
        }
ProcessMethodBodies