class Puppet::Pops::Types::TypeMismatchDescriber::UnresolvedTypeFinder

Attributes

unresolved[R]

Public Class Methods

new() click to toggle source
    # File lib/puppet/pops/types/type_mismatch_describer.rb
958 def initialize
959   @unresolved = nil
960 end

Public Instance Methods

visit(type, guard) click to toggle source
    # File lib/puppet/pops/types/type_mismatch_describer.rb
962 def visit(type, guard)
963   if @unresolved.nil? && type.is_a?(PTypeReferenceType)
964     @unresolved = type.type_string
965   end
966 end