1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/arel/nodes/binary.rb
2018-02-24 18:11:47 +10:30

52 lines
946 B
Ruby

# frozen_string_literal: true
module Arel # :nodoc: all
module Nodes
class Binary < Arel::Nodes::NodeExpression
attr_accessor :left, :right
def initialize(left, right)
super()
@left = left
@right = right
end
def initialize_copy(other)
super
@left = @left.clone if @left
@right = @right.clone if @right
end
def hash
[self.class, @left, @right].hash
end
def eql?(other)
self.class == other.class &&
self.left == other.left &&
self.right == other.right
end
alias :== :eql?
end
%w{
As
Assignment
Between
GreaterThan
GreaterThanOrEqual
Join
LessThan
LessThanOrEqual
NotEqual
NotIn
Or
Union
UnionAll
Intersect
Except
}.each do |name|
const_set name, Class.new(Binary)
end
end
end