Method: Cucumber::Ast::Table::Cells#accept

Defined in:
lib/cucumber/ast/table.rb

#accept(visitor) ⇒ Object



603
604
605
606
607
608
609
# File 'lib/cucumber/ast/table.rb', line 603

def accept(visitor)
  return if Cucumber.wants_to_quit
  each do |cell|
    visitor.visit_table_cell(cell)
  end
  nil
end