aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/on.rb
blob: 4cc76b70dbcfc345efc3a6b65fe4238096e3b0eb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                         
module Arel
  module Nodes
    class On
      attr_accessor :expr

      def initialize expr
        @expr = expr
      end
    end
  end
end