aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/binary.rb
blob: eb873c75e16fd959316268433bee89e117e16c3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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

    #%w{
    #  InnerJoin
    #  OuterJoin
    #}.each do |name|
    #  Nodes.const_set name, Class.new(Join)
    #end
  end
end