This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
find_classes_in(res, klass)
private
# File lib/rdoc/ri/ri_reader.rb, line 80
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