each(&block)
Iterate through AST, nodes will be yielded depth-first
# File activerecord/lib/arel/nodes/node.rb, line 43 def each(&block) return enum_for(:each) unless block_given? ::Arel::Visitors::DepthFirst.new(block).accept self end