method

find_classes_in

ruby latest stable - Class: RDoc::RI::Reader

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_9_1_378) is shown here.

find_classes_in(res, klass)
private

No documentation available.

# File lib/rdoc/ri/reader.rb, line 86
  def find_classes_in(res, klass)
    classes = klass.classes_and_modules
    for c in classes
      res << c.full_name
      find_classes_in(res, c)
    end
    res
  end