class Asciidoctor::Reader

def unshift_all lines

Internal: Restore the lines to the stack and decrement the lineno
def unshift_all lines
  @lineno -= lines.size
  @look_ahead += lines.size
  @lines.unshift(*lines)
end