class Puppet::Pops::Types::PTypeAliasType::AssertSelfRecursionStatusAcceptor
Acceptor used when re-checking for self recursion after a self recursion has been detected
@api private
Public Instance Methods
visit(type, _)
click to toggle source
# File lib/puppet/pops/types/types.rb 3448 def visit(type, _) 3449 type.set_self_recursion_status if type.is_a?(PTypeAliasType) 3450 end