class Cucumber::Formatter::LegacyApi::Ast::LegacyTable

def accept(formatter)

def accept(formatter)
  formatter.before_multiline_arg self
  cells_rows.each_with_index do |row, index|
    line = location.line + index
    LegacyTableRow.new(row, line).accept(formatter)
  end
  formatter.after_multiline_arg self
end