12 lines
175 B
Ruby
12 lines
175 B
Ruby
|
# frozen_string_literal: true
|
||
|
module Arel
|
||
|
module Nodes
|
||
|
class With < Arel::Nodes::Unary
|
||
|
alias children expr
|
||
|
end
|
||
|
|
||
|
class WithRecursive < With; end
|
||
|
end
|
||
|
end
|
||
|
|