Class: RDocF95::RI::TopLevelEntry

Inherits:
ClassEntry show all
Defined in:
lib/rdoc-f95/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 RDocF95::RI::ClassEntry

Instance Method Details

#full_nameObject



136
137
138
# File 'lib/rdoc-f95/ri/cache.rb', line 136

def full_name
    ""
end

#methods_matching(name, is_class_method) ⇒ Object



132
133
134
# File 'lib/rdoc-f95/ri/cache.rb', line 132

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

#module_named(name) ⇒ Object



140
141
142
# File 'lib/rdoc-f95/ri/cache.rb', line 140

def module_named(name)

end