(
private tplRef: TemplateRef<any>,
private vcRef: ViewContainerRef,
)
| 2530 | }) |
| 2531 | class PollutedContext { |
| 2532 | constructor( |
| 2533 | private tplRef: TemplateRef<any>, |
| 2534 | private vcRef: ViewContainerRef, |
| 2535 | ) { |
| 2536 | const evRef = this.vcRef.createEmbeddedView(this.tplRef); |
| 2537 | evRef.context.bar = 'baz'; |
| 2538 | } |
| 2539 | } |
| 2540 | |
| 2541 | @Directive({ |
nothing calls this directly
no test coverage detected