# File lib/active_support/dependencies/autoload.rb, line 28
    def autoload_at(path)
      @@at_path, old_path = path, @@at_path
      yield
    ensure
      @@at_path = old_path
    end