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










                                   
module Arel
  module Nodes
    class Unary < Arel::Nodes::Node
      attr_accessor :expr

      def initialize expr
        @expr = expr
      end
    end
  end
end