(lView: LView | null, errMessage?: string)
| 168 | } |
| 169 | |
| 170 | export function assertParentView(lView: LView | null, errMessage?: string) { |
| 171 | assertDefined( |
| 172 | lView, |
| 173 | errMessage || "Component views should always have a parent view (component's host view)", |
| 174 | ); |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * This is a basic sanity check that the `injectorIndex` seems to point to what looks like a |
no test coverage detected
searching dependent graphs…