@@ -1518,7 +1518,7 @@ function _insert_extension_triggers(parent::PkgId, extensions::Dict{String, Any}
1518
1518
uuid_trigger = UUID (totaldeps[trigger]:: String )
1519
1519
trigger_id = PkgId (uuid_trigger, trigger)
1520
1520
push! (trigger_ids, trigger_id)
1521
- if ! haskey (explicit_loaded_modules , trigger_id) || haskey (package_locks, trigger_id)
1521
+ if ! haskey (Base . loaded_modules , trigger_id) || haskey (package_locks, trigger_id)
1522
1522
trigger1 = get! (Vector{ExtensionId}, EXT_DORMITORY, trigger_id)
1523
1523
push! (trigger1, gid)
1524
1524
else
@@ -2392,9 +2392,8 @@ function __require_prelocked(uuidkey::PkgId, env=nothing)
2392
2392
insert_extension_triggers (uuidkey)
2393
2393
# After successfully loading, notify downstream consumers
2394
2394
run_package_callbacks (uuidkey)
2395
- elseif ! haskey (explicit_loaded_modules, uuidkey)
2396
- explicit_loaded_modules[uuidkey] = m
2397
- run_package_callbacks (uuidkey)
2395
+ else
2396
+ newm = root_module (uuidkey)
2398
2397
end
2399
2398
return m
2400
2399
end
@@ -2407,7 +2406,6 @@ end
2407
2406
PkgOrigin () = PkgOrigin (nothing , nothing , nothing )
2408
2407
const pkgorigins = Dict {PkgId,PkgOrigin} ()
2409
2408
2410
- const explicit_loaded_modules = Dict {PkgId,Module} () # Emptied on Julia start
2411
2409
const loaded_modules = Dict {PkgId,Module} () # available to be explicitly loaded
2412
2410
const loaded_precompiles = Dict {PkgId,Vector{Module}} () # extended (complete) list of modules, available to be loaded
2413
2411
const loaded_modules_order = Vector {Module} ()
@@ -2448,7 +2446,6 @@ end
2448
2446
end
2449
2447
maybe_loaded_precompile (key, module_build_id (m)) === nothing && push! (loaded_modules_order, m)
2450
2448
loaded_modules[key] = m
2451
- explicit_loaded_modules[key] = m
2452
2449
module_keys[m] = key
2453
2450
end
2454
2451
nothing
@@ -2480,9 +2477,6 @@ loaded_modules_array() = @lock require_lock copy(loaded_modules_order)
2480
2477
# after unreference_module, a subsequent require call will try to load a new copy of it, if stale
2481
2478
# reload(m) = (unreference_module(m); require(m))
2482
2479
function unreference_module (key:: PkgId )
2483
- if haskey (explicit_loaded_modules, key)
2484
- m = pop! (explicit_loaded_modules, key)
2485
- end
2486
2480
if haskey (loaded_modules, key)
2487
2481
m = pop! (loaded_modules, key)
2488
2482
# need to ensure all modules are GC rooted; will still be referenced
@@ -3046,7 +3040,7 @@ function compilecache(pkg::PkgId, path::String, internal_stderr::IO = stderr, in
3046
3040
# build up the list of modules that we want the precompile process to preserve
3047
3041
if keep_loaded_modules
3048
3042
concrete_deps = copy (_concrete_dependencies)
3049
- for (pkgreq, modreq) in loaded_modules # TODO : convert all relevant staleness heuristics to use explicit_loaded_modules instead
3043
+ for (pkgreq, modreq) in loaded_modules
3050
3044
if ! (pkgreq === Main || pkgreq === Core || pkgreq === Base)
3051
3045
push! (concrete_deps, pkgreq => module_build_id (modreq))
3052
3046
end
0 commit comments