module Bootsnap::LoadPathCache::CoreExt::ActiveSupport::ClassMethods

def load_missing_constant(from_mod, const_name)

200+ lines of monkeypatches.
behaviour. The gymnastics here are a bit awkward, but it prevents
These methods call search_for_file, and we want to modify its

search_for_file, try again with the default implementation.
If we can't find a constant using the patched implementation of
def load_missing_constant(from_mod, const_name)
  CoreExt::ActiveSupport.with_bootsnap_fallback(NameError) { super }
end