(
wrapper: InstanceWrapper<T>,
moduleRef: Module,
contextId = STATIC_CONTEXT,
inquirer?: InstanceWrapper,
)
| 259 | } |
| 260 | |
| 261 | public async loadInjectable<T = any>( |
| 262 | wrapper: InstanceWrapper<T>, |
| 263 | moduleRef: Module, |
| 264 | contextId = STATIC_CONTEXT, |
| 265 | inquirer?: InstanceWrapper, |
| 266 | ) { |
| 267 | const injectables = moduleRef.injectables; |
| 268 | await this.loadInstance<T>( |
| 269 | wrapper, |
| 270 | injectables, |
| 271 | moduleRef, |
| 272 | this.createResolutionContext(contextId, inquirer), |
| 273 | ); |
| 274 | } |
| 275 | |
| 276 | public async loadProvider( |
| 277 | wrapper: InstanceWrapper<Injectable>, |
no test coverage detected