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

CreateEquals() protected method

protected CreateEquals ( Boo.Lang.Compiler.Ast.BinaryExpression node ) : MethodInvocationExpression
node Boo.Lang.Compiler.Ast.BinaryExpression
return Boo.Lang.Compiler.Ast.MethodInvocationExpression
        protected MethodInvocationExpression CreateEquals(BinaryExpression node)
        {
            return CodeBuilder.CreateMethodInvocation(MethodCache.RuntimeServices_EqualityOperator, node.Left, node.Right);
        }
ProcessMethodBodies