(producer: () => Node[])
| 379 | function noopOnDestroy() {} |
| 380 | |
| 381 | function eagerContentAdapter(producer: () => Node[]): Node[] { |
| 382 | return producer(); |
| 383 | } |
| 384 | |
| 385 | function renderSecondInstance(fixture: ViewFixture): HTMLElement { |
| 386 | const hostLView = fixture.lView[PARENT] as LView; |
nothing calls this directly
no test coverage detected