aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/with.rb
blob: ce1644b60eb966e992a9012a9829af82c758e3ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Arel
	module Nodes
		class With < Arel::Nodes::Unary
			attr_reader :children
			alias value children
			alias expr  children

			def initialize *children
				@children = children
			end

		end

		class WithRecursive < With; end
	end
end