equality.rb 187 字节
Newer Older
A
Aaron Patterson 已提交
1 2 3 4 5 6 7 8 9 10 11 12
module Arel
  module Nodes
    class Equality
      attr_accessor :left, :right

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