class Asciidoctor::Table::ParserContext

def close_row

returns nothing

Array and counter variables.
Internal: 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
  @colcount = @column_visits if @colcount == -1
  @column_visits = 0
  @current_row = []
  @active_rowspans.shift
  @active_rowspans[0] ||= 0
  nil
end