1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/nodes/binary.rb
2010-12-14 21:08:01 -08:00

36 lines
618 B
Ruby

module Arel
module Nodes
class Binary < Arel::Nodes::Node
attr_accessor :left, :right
def initialize left, right
@left = left
@right = right
end
def initialize_copy other
super
@left = @left.clone if @left
@right = @right.clone if @right
end
end
%w{
As
Assignment
Between
DoesNotMatch
GreaterThan
GreaterThanOrEqual
Join
LessThan
LessThanOrEqual
Matches
NotEqual
NotIn
Or
}.each do |name|
const_set name, Class.new(Binary)
end
end
end