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