- Added documentation to `getModMan()`
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-01 13:54:40 +02:00
parent 1cc862bd3e
commit 0444b70a9c
1 changed files with 6 additions and 0 deletions

View File

@ -139,6 +139,12 @@ public class Compiler
/* The module manager */
private ModuleManager modMan;
/**
* Returns the module manager
* associated with this compiler
*
* Returns: the `ModuleManager`
*/
public ModuleManager getModMan()
{
return this.modMan;