Sha256: cb209cd4fd4b9151673ee93a5563d872a8588267bdd211df2762ea351b225684

Contents?: true

Size: 834 Bytes

Versions: 8

Compression:

Stored size: 834 Bytes

Contents

module Puppet::Pops
module Types

KEY_ANNOTATIONS = 'annotations'.freeze

# Behaviour common to all Pcore annotatable classes
#
# @api public
module Annotatable
  TYPE_ANNOTATIONS = PHashType.new(PType.new(PTypeReferenceType.new('Annotation')), PHashType::DEFAULT)

  # @return [{PType => PStructType}] the map of annotations
  # @api public
  def annotations
    @annotations.nil? ? EMPTY_HASH : @annotations
  end

  # @api private
  def init_annotatable(init_hash)
    @annotations = init_hash[KEY_ANNOTATIONS].freeze
  end

  # @api private
  def annotatable_accept(visitor, guard)
    @annotations.each_key { |key| key.accept(visitor, guard) } unless @annotations.nil?
  end

  # @api private
  def _pcore_init_hash
    result = {}
    result[KEY_ANNOTATIONS] = @annotations unless @annotations.nil?
    result
  end
end
end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
puppet-5.0.1 lib/puppet/pops/types/annotatable.rb
puppet-5.0.1-x86-mingw32 lib/puppet/pops/types/annotatable.rb
puppet-5.0.1-x64-mingw32 lib/puppet/pops/types/annotatable.rb
puppet-5.0.1-universal-darwin lib/puppet/pops/types/annotatable.rb
puppet-5.0.0 lib/puppet/pops/types/annotatable.rb
puppet-5.0.0-x86-mingw32 lib/puppet/pops/types/annotatable.rb
puppet-5.0.0-x64-mingw32 lib/puppet/pops/types/annotatable.rb
puppet-5.0.0-universal-darwin lib/puppet/pops/types/annotatable.rb