class Module

def autoload(const, path)

def autoload(const, path)
  autoload_without_cache(const, Bootsnap::LoadPathCache.load_path_cache.find(path) || path)
rescue Bootsnap::LoadPathCache::ReturnFalse
  return false
rescue Bootsnap::LoadPathCache::FallbackScan
  autoload_without_cache(const, path)
end