Class: RI::TopLevelEntry

Inherits:
ClassEntry show all
Defined in:
lib/rdoc/ri/ri_cache.rb

Overview

A TopLevelEntry is like a class entry, but when asked to search for methods searches all classes, not just itself

Instance Attribute Summary

Attributes inherited from ClassEntry

#name, #path_names

Instance Method Summary collapse

Methods inherited from ClassEntry

#add_path, #all_method_names, #classes_and_modules, #contained_class_named, #contained_modules_matching, #initialize, #load_from, #recursively_find_methods_matching

Constructor Details

This class inherits a constructor from RI::ClassEntry

Instance Method Details

#full_nameObject



135
136
137
# File 'lib/rdoc/ri/ri_cache.rb', line 135

def full_name
  ""
end

#methods_matching(name, is_class_method) ⇒ Object



131
132
133
# File 'lib/rdoc/ri/ri_cache.rb', line 131

def methods_matching(name, is_class_method)
  res = recursively_find_methods_matching(name, is_class_method)
end

#module_named(name) ⇒ Object



139
140
141
# File 'lib/rdoc/ri/ri_cache.rb', line 139

def module_named(name)
  
end