Method: YARD::RegistryStore#paths_for_type
- Defined in:
- lib/yard/registry_store.rb
#paths_for_type(type, reload = false) ⇒ Array<String>
Returns a list of object paths with a given CodeObjects::Base#type.
102 103 104 105 |
# File 'lib/yard/registry_store.rb', line 102 def paths_for_type(type, reload = false) load_all if reload @object_types[type] || [] end |