lib/macros4cuke/coll-walker-factory.rb in macros4cuke-0.5.07 vs lib/macros4cuke/coll-walker-factory.rb in macros4cuke-0.5.08

- old
+ new

@@ -3,12 +3,10 @@ require_relative 'macro-collection' module Macros4Cuke # Module used as a namespace - - # A Coll(ection)WalkerFactory object is a factory that creates # an enumerator that itself walks in the passed macro collection object. # The walker performs a depth-first visit and yields visit events. class CollWalkerFactory # Structure used internally by the walker @@ -108,14 +106,9 @@ backlog.unshift(StringNode.new(:on_section_end, nil)) add_children(current_node.children, backlog) return [:on_section, nesting_level, current_node.name] end - - - - end # class - end # module # End of file