This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
accept(visitor)
public
Runs this list and all its #items through visitor
# File lib/rdoc/markup/list.rb, line 61
def accept visitor
visitor.accept_list_start self
@items.each do |item|
item.accept visitor
end
visitor.accept_list_end self
end