Boo.Lang.Compiler.Steps.ProcessMethodBodies.ResolveRuntimeOperator C# (CSharp) 메소드

ResolveRuntimeOperator() 보호된 메소드

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