Method: Puppet::Pops::Types::PTypeSetType#accept
- Defined in:
- lib/puppet/pops/types/p_type_set_type.rb
#accept(visitor, guard) ⇒ Object
248 249 250 251 252 |
# File 'lib/puppet/pops/types/p_type_set_type.rb', line 248 def accept(visitor, guard) super @types.each_value { |type| type.accept(visitor, guard) } @references.each_value { |ref| ref.accept(visitor, guard) } end |