aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/unary.rb
blob: e1576b9c99a19f328f65156eccb0564fc8571ffd (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
module Arel
  module Nodes
    class Unary < Arel::Nodes::Node
      attr_accessor :expr
      alias :value :expr

      def initialize expr
        @expr = expr
      end
    end

    %w{
      Group
      Grouping
      Having
      Limit
      Not
      Offset
      On
      Top
    }.each do |name|
      const_set(name, Class.new(Unary))
    end
  end
end