Sha256: f9f61b5ad9f3ee7fefb1267edab1404e6b6bc4b0d6db97c4da2746699bda65a1

Contents?: true

Size: 771 Bytes

Versions: 32

Compression:

Stored size: 771 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

32 entries across 32 versions & 1 rubygems

Version Path
puppet-8.10.0 lib/puppet/pops/types/type_acceptor.rb
puppet-8.10.0-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.10.0-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.10.0-universal-darwin lib/puppet/pops/types/type_acceptor.rb
puppet-8.9.0 lib/puppet/pops/types/type_acceptor.rb
puppet-8.9.0-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.9.0-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.9.0-universal-darwin lib/puppet/pops/types/type_acceptor.rb
puppet-8.8.1 lib/puppet/pops/types/type_acceptor.rb
puppet-8.8.1-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.8.1-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.8.1-universal-darwin lib/puppet/pops/types/type_acceptor.rb
puppet-8.7.0 lib/puppet/pops/types/type_acceptor.rb
puppet-8.7.0-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.7.0-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.7.0-universal-darwin lib/puppet/pops/types/type_acceptor.rb
puppet-8.6.0 lib/puppet/pops/types/type_acceptor.rb
puppet-8.6.0-x86-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.6.0-x64-mingw32 lib/puppet/pops/types/type_acceptor.rb
puppet-8.6.0-universal-darwin lib/puppet/pops/types/type_acceptor.rb