Static Loader contains constants, basic data types and other types required for the system to boot.
# File lib/puppet/pops/loader/static_loader.rb, line 20 def find(name) # There is nothing to search for, everything this loader knows about is already available nil end
# File lib/puppet/pops/loader/static_loader.rb, line 16 def get_entry(typed_name) load_constant(typed_name) end
# File lib/puppet/pops/loader/static_loader.rb, line 12 def load_typed(typed_name) load_constant(typed_name) end
# File lib/puppet/pops/loader/static_loader.rb, line 25 def parent nil # at top of the hierarchy end
# File lib/puppet/pops/loader/static_loader.rb, line 29 def to_s() "(StaticLoader)" end
# File lib/puppet/pops/loader/static_loader.rb, line 7 def initialize @loaded = {} create_logging_functions() end