Sha256: c5442017f1e760fdfbc758a0b0291a8e727bfd0f63159f6e5689ea8c813bab9b

Contents?: true

Size: 770 Bytes

Versions: 20

Compression:

Stored size: 770 Bytes

Contents

# frozen_string_literal: true
module Puppet::Pops
module Types
# Implements a standard visitor patter for the Puppet Type system.

#
# An instance of this module is passed as an argument to the {PAnyType#accept}
# method of a Type instance. That type will then use the {TypeAcceptor#visit} callback
# on the acceptor and then pass the acceptor to the `accept` method of all contained
# type instances so that the it gets a visit from each one recursively.
#
module TypeAcceptor
  # @param type [PAnyType] the type that we accept a visit from
  # @param guard [RecursionGuard] the guard against self recursion
  def visit(type, guard)
  end
end

# An acceptor that does nothing
class NoopTypeAcceptor
  include TypeAcceptor

  INSTANCE = NoopTypeAcceptor.new
end
end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.3.0 lib/puppet/pops/types/type_acceptor.rb
puppet-8.3.0-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.3.0-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.3.0-universal-darwin lib/puppet/pops/types/type_acceptor.rb
puppet-8.3.1 lib/puppet/pops/types/type_acceptor.rb
puppet-8.3.1-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.3.1-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.3.1-universal-darwin lib/puppet/pops/types/type_acceptor.rb
puppet-8.2.0 lib/puppet/pops/types/type_acceptor.rb
puppet-8.2.0-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.2.0-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.2.0-universal-darwin lib/puppet/pops/types/type_acceptor.rb
puppet-8.1.0 lib/puppet/pops/types/type_acceptor.rb
puppet-8.1.0-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.1.0-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.1.0-universal-darwin lib/puppet/pops/types/type_acceptor.rb
puppet-8.0.1 lib/puppet/pops/types/type_acceptor.rb
puppet-8.0.1-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.0.1-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.0.1-universal-darwin lib/puppet/pops/types/type_acceptor.rb