Class: Arel::Visitors::DepthFirst

Inherits:
Visitor
  • Object
show all
Defined in:
lib/activerecord-arel_depth_first/visitors/depth_first.rb

Instance Method Summary collapse

Constructor Details

#initialize(block = nil) ⇒ DepthFirst

Returns a new instance of DepthFirst.



6
7
8
9
# File 'lib/activerecord-arel_depth_first/visitors/depth_first.rb', line 6

def initialize(block = nil)
  @block = block || Proc.new
  super()
end