class Cucumber::Formatter::LegacyApi::Ast::DataTableRow

def accept(formatter)

def accept(formatter)
  formatter.before_table_row(self)
  values.each do |value|
    formatter.before_table_cell(value)
    formatter.table_cell_value(value, status)
    formatter.after_table_cell(value)
  end
  formatter.after_table_row(self)
end

def dom_id

def dom_id
  "row_#{line}"
end

def exception

def exception
  nil
end

def initialize(row, line)

def initialize(row, line)
  @values = row
  @line = line
end

def status

def status
  :skipped
end