class Liquid::TablerowloopDrop

def increment!

def increment!
  @index += 1
  if @col == @cols
    @col = 1
    @row += 1
  else
    @col += 1
  end
end