(
modules: Map<string, Module> = this.container.getModules(),
)
| 215 | } |
| 216 | |
| 217 | public async scanModulesForDependencies( |
| 218 | modules: Map<string, Module> = this.container.getModules(), |
| 219 | ) { |
| 220 | for (const [token, { metatype }] of modules) { |
| 221 | await this.reflectImports(metatype, token, metatype.name); |
| 222 | this.reflectProviders(metatype, token); |
| 223 | this.reflectControllers(metatype, token); |
| 224 | this.reflectExports(metatype, token); |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | public async reflectImports( |
| 229 | module: Type<unknown>, |
no test coverage detected