| 954 | } |
| 955 | |
| 956 | void ModuleLibrary::addBuiltInModule () { |
| 957 | Module * module = Module::require("$"); |
| 958 | DAS_ASSERTF(module, "builtin module not found? or you have forgotten to NEED_MODULE(Module_BuiltIn) be called first"); |
| 959 | if (module) addModule(module); |
| 960 | } |
| 961 | |
| 962 | void ModuleLibrary::renameModule ( Module * module, const string & newName ) { |
| 963 | auto oldHashLookup = moduleLookupByHash.find(module->nameHash); |
no outgoing calls