* Use this with `multi` `providers`.
( this: NodeInjectorFactory, _: undefined, flags: InternalInjectFlags | undefined, tData: TData, lData: LView, tNode: TDirectiveHostNode, )
| 318 | * Use this with `multi` `providers`. |
| 319 | */ |
| 320 | function multiProvidersFactoryResolver( |
| 321 | this: NodeInjectorFactory, |
| 322 | _: undefined, |
| 323 | flags: InternalInjectFlags | undefined, |
| 324 | tData: TData, |
| 325 | lData: LView, |
| 326 | tNode: TDirectiveHostNode, |
| 327 | ): any[] { |
| 328 | return multiResolve(this.multi!, []); |
| 329 | } |
| 330 | |
| 331 | /** |
| 332 | * Use this with `multi` `viewProviders`. |
nothing calls this directly
no test coverage detected
searching dependent graphs…