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
2011-04-11 10:02:28 -07:00

27 lines
383 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{
Bin
Group
Grouping
Having
Limit
Not
Offset
On
Top
Lock
}.each do |name|
const_set(name, Class.new(Unary))
end
end
end