class RDoc::RubyLex

def peek_match?(regexp)

def peek_match?(regexp)
  while @rests.empty?
    return false unless buf_input
  end
  regexp =~ @rests.join("")
end