method
find_names
v1_8_7_330 -
Show latest stable
- Class:
RDoc::Diagram
find_names(mod)private
No documentation available.
# File lib/rdoc/diagram.rb, line 107
def find_names(mod)
return [mod.full_name] + mod.classes.collect{|cl| cl.full_name} +
mod.modules.collect{|m| find_names(m)}.flatten
end