1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/nodes/unary.rb
2010-12-14 20:53:19 -08:00

23 lines
340 B
Ruby

module Arel
module Nodes
class Unary < Arel::Nodes::Node
attr_accessor :expr
alias :value :expr
def initialize expr
@expr = expr
end
end
%w{
Not
Group
Grouping
Offset
Having
On
}.each do |name|
const_set(name, Class.new(Unary))
end
end
end