( providedIn: Function | string | null | undefined, )
| 837 | } |
| 838 | |
| 839 | function computeProvidedIn( |
| 840 | providedIn: Function | string | null | undefined, |
| 841 | ): MaybeForwardRefExpression { |
| 842 | const expression = |
| 843 | typeof providedIn === 'function' |
| 844 | ? new WrappedNodeExpr(providedIn) |
| 845 | : new LiteralExpr(providedIn ?? null); |
| 846 | // See `convertToProviderExpression()` for why this uses `ForwardRefHandling.None`. |
| 847 | return createMayBeForwardRefExpression(expression, ForwardRefHandling.None); |
| 848 | } |
| 849 | |
| 850 | function convertR3DependencyMetadataArray( |
| 851 | facades: R3DependencyMetadataFacade[] | null | undefined, |
no test coverage detected
searching dependent graphs…