class Cucumber::Formatter::Pretty

def print_data_table(data_table, status, indent_amount)

def print_data_table(data_table, status, indent_amount)
  data_table.rows.each do |row|
    print_comments(row.location.line, indent_amount)
    @io.puts indent(format_string(gherkin_source.split("\n")[row.location.line - 1].strip, status), indent_amount)
  end
end