Method: Puppet::Pops::Model::NamedDefinition#_pcore_contents

Defined in:
lib/puppet/pops/model/ast.rb

#_pcore_contents {|@body| ... } ⇒ Object

Yields:



1912
1913
1914
1915
# File 'lib/puppet/pops/model/ast.rb', line 1912

def _pcore_contents
  @parameters.each { |value| yield(value) }
  yield(@body) unless @body.nil?
end