core.moduleapi: Record reverse dependencies

Useful to know why a module was auto-loaded without having to dig trough
all other modules for the one that depends on it.
This commit is contained in:
Kim Alvefur 2023-03-05 14:07:08 +01:00
parent 4d46c27840
commit 32445b3082

View file

@ -169,6 +169,10 @@ function api:depends(name)
end
end
self.dependencies[name] = true;
if not mod.module.reverse_dependencies then
mod.module.reverse_dependencies = {};
end
mod.module.reverse_dependencies[self.name] = true;
return mod;
end