()
| 103 | let NULL_INJECTOR: Injector | undefined = undefined; |
| 104 | |
| 105 | export function getNullInjector(): Injector { |
| 106 | if (NULL_INJECTOR === undefined) { |
| 107 | NULL_INJECTOR = new NullInjector(); |
| 108 | } |
| 109 | return NULL_INJECTOR; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * An entry in the injector which tracks information about the given token, including a possible |
no outgoing calls
no test coverage detected
searching dependent graphs…