(
private tplRef: TemplateRef<any>,
private vcRef: ViewContainerRef,
)
| 2579 | }) |
| 2580 | class NoContext { |
| 2581 | constructor( |
| 2582 | private tplRef: TemplateRef<any>, |
| 2583 | private vcRef: ViewContainerRef, |
| 2584 | ) { |
| 2585 | this.vcRef.createEmbeddedView(this.tplRef); |
| 2586 | } |
| 2587 | } |
| 2588 | |
| 2589 | @Pipe({ |
nothing calls this directly
no test coverage detected