Method: RDoc::Context#find_enclosing_module_named

Defined in:
lib/rdoc/code_object/context.rb

#find_enclosing_module_named(name) ⇒ Object

Find a module at a higher scope



825
826
827
# File 'lib/rdoc/code_object/context.rb', line 825

def find_enclosing_module_named(name)
  parent && parent.find_module_named(name)
end