(
private tplRef: TemplateRef<any>,
private vcRef: ViewContainerRef,
)
| 2544 | }) |
| 2545 | class NoContext { |
| 2546 | constructor( |
| 2547 | private tplRef: TemplateRef<any>, |
| 2548 | private vcRef: ViewContainerRef, |
| 2549 | ) { |
| 2550 | this.vcRef.createEmbeddedView(this.tplRef); |
| 2551 | } |
| 2552 | } |
| 2553 | |
| 2554 | @Pipe({ |
nothing calls this directly
no test coverage detected