Method: YARD::RegistryStore#initialize
- Defined in:
- lib/yard/registry_store.rb
#initialize ⇒ RegistryStore
Returns a new instance of RegistryStore.
14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/yard/registry_store.rb', line 14 def initialize @file = nil @checksums = {} @store = {} @proxy_types = {} @object_types = {:root => [:root]} @notfound = {} @loaded_objects = 0 @available_objects = 0 @locales = {} @store[:root] = CodeObjects::RootObject.allocate @store[:root].send(:initialize, nil, :root) end |