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

29 lines
415 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
Ordering
Top
Lock
DistinctOn
}.each do |name|
const_set(name, Class.new(Unary))
end
end
end