(
private tplRef: TemplateRef<any>,
private vcRef: ViewContainerRef,
)
| 2559 | }) |
| 2560 | class PollutedContext { |
| 2561 | constructor( |
| 2562 | private tplRef: TemplateRef<any>, |
| 2563 | private vcRef: ViewContainerRef, |
| 2564 | ) { |
| 2565 | const evRef = this.vcRef.createEmbeddedView(this.tplRef); |
| 2566 | evRef.context.bar = 'baz'; |
| 2567 | } |
| 2568 | } |
| 2569 | |
| 2570 | @Directive({ |
nothing calls this directly
no test coverage detected