Flowdock
method

accept

Importance_0
v1_9_2_180 - Show latest stable - 0 notes - Class: List
accept(visitor) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/markup/list.rb, line 38
  def accept visitor
    visitor.accept_list_start self

    @items.each do |item|
      item.accept visitor
    end

    visitor.accept_list_end self
  end
Register or log in to add new notes.