method

find_names_in

ruby latest stable - Class: RI::RiReader

Method deprecated or moved

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

find_names_in(res, klass)
private

No documentation available.

# File lib/rdoc/ri/ri_reader.rb, line 89
    def find_names_in(res, klass)
      classes = klass.classes_and_modules
      for c in classes
        res << c.full_name
        res.concat c.all_method_names
        find_names_in(res, c)
      end
      res
    end