# File lib/puppet/util/autoload/file_cache.rb, line 49
49:   def found_file?(path, type = nil)
50:     if data = found_files[path] and ! data_expired?(data[:time])
51:       return(type and ! data[:stat].send(type)) ? false : true
52:     else
53:       return false
54:     end
55:   end