Flowdock
method

find_names

Importance_1
v1_8_7_330 - Show latest stable - 0 notes - Class: RDoc::Diagram
find_names(mod) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.