class RDoc::RubyLex

def peek(i = 0)

def peek(i = 0)
  while @rests.size <= i
    return nil unless buf_input
  end
  @rests[i]
end