class Asciidoctor::Table::ParserContext

def close_row

returns nothing

Array and counter variables.
Public: Close the row by adding it to the Table and resetting the row
def close_row
  @table.rows.body << @current_row
  # don't have to account for active rowspans here
  # since we know this is first row
  @col_count = @col_visits if @col_count == -1
  @col_visits = 0
  @current_row = []
  @active_rowspans.shift
  @active_rowspans[0] ||= 0
  nil
end