find_class_or_module(name)
Finds the class or module with name
# File lib/rdoc/top_level.rb, line 165 def self.find_class_or_module(name) name = $' if name =~ /^::/ RDoc::TopLevel.classes_hash[name] || RDoc::TopLevel.modules_hash[name] end