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

Public Instance Methods

accept(formatter) click to toggle source
# File lib/cucumber/formatter/legacy_api/ast.rb, line 370
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