Class: Arel::Visitors::Dot
Defined Under Namespace
Instance Method Summary collapse
- #accept(object, collector) ⇒ Object
 - 
  
    
      #initialize  ⇒ Dot 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Dot.
 
Constructor Details
#initialize ⇒ Dot
Returns a new instance of Dot.
      19 20 21 22 23 24 25 26  | 
    
      # File 'lib/arel/visitors/dot.rb', line 19 def initialize super() @nodes = [] @edges = [] @node_stack = [] @edge_stack = [] @seen = {} end  | 
  
Instance Method Details
#accept(object, collector) ⇒ Object
      28 29 30 31  | 
    
      # File 'lib/arel/visitors/dot.rb', line 28 def accept(object, collector) visit object collector << to_dot end  |