(component: Component)
| 129 | } |
| 130 | |
| 131 | export function componentNeedsResolution(component: Component): boolean { |
| 132 | return !!( |
| 133 | (component.templateUrl && !component.hasOwnProperty('template')) || |
| 134 | component.styleUrls?.length || |
| 135 | component.styleUrl |
| 136 | ); |
| 137 | } |
| 138 | |
| 139 | export function clearResolutionOfComponentResourcesQueue(): Map<Type<any>, Component> { |
| 140 | const old = componentResourceResolutionQueue; |
no outgoing calls
no test coverage detected
searching dependent graphs…