(
public container: ViewContainerRef,
templateRef: TemplateRef<SomeViewportContext>,
)
| 2545 | }) |
| 2546 | class SomeViewport { |
| 2547 | constructor( |
| 2548 | public container: ViewContainerRef, |
| 2549 | templateRef: TemplateRef<SomeViewportContext>, |
| 2550 | ) { |
| 2551 | container.createEmbeddedView(templateRef, new SomeViewportContext('hello')); |
| 2552 | container.createEmbeddedView(templateRef, new SomeViewportContext('again')); |
| 2553 | } |
| 2554 | } |
| 2555 | |
| 2556 | @Directive({ |
nothing calls this directly
no test coverage detected