(
module: ModuleDefinition,
)
| 759 | } |
| 760 | |
| 761 | private isForwardReference( |
| 762 | module: ModuleDefinition, |
| 763 | ): module is ForwardReference { |
| 764 | return module && !!(module as ForwardReference).forwardRef; |
| 765 | } |
| 766 | |
| 767 | private isRequestOrTransient(scope: Scope): boolean { |
| 768 | return scope === Scope.REQUEST || scope === Scope.TRANSIENT; |
no outgoing calls
no test coverage detected