aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/binary.rb
blob: cfa75909c59276bdd749c9c760e5cc174aef236e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module Arel
  module Nodes
    class Binary < Arel::Nodes::Node
      attr_accessor :left, :right

      def initialize left, right
        @left  = left
        @right = right
      end
    end
  end
end