# File lib/rack/reloader.rb, line 100 100: def safe_stat(file) 101: return unless file 102: stat = ::File.stat(file) 103: return file, stat if stat.file? 104: rescue Errno::ENOENT, Errno::ENOTDIR 105: @cache.delete(file) and false 106: end