class Cucumber::Ast::OutlineTable

def accept(visitor)

def accept(visitor)
  cells_rows.each_with_index do |row, n|
    if(visitor.options[:expand])
      row.accept(visitor)
    else
      visitor.visit_table_row(row)
    end
  end
  nil
end