Method: Puppet::Pops::Loaders#instantiate_definitions

Defined in:
lib/puppet/pops/loaders.rb

#instantiate_definitions(program, loader) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Add 4.x definitions found in the given program to the given loader.



312
313
314
315
# File 'lib/puppet/pops/loaders.rb', line 312

def instantiate_definitions(program, loader)
  program.definitions.each { |d| instantiate_definition(d, loader) }
  nil
end