(
public container: ViewContainerRef,
templateRef: TemplateRef<SomeViewportContext>,
)
| 2516 | }) |
| 2517 | class SomeViewport { |
| 2518 | constructor( |
| 2519 | public container: ViewContainerRef, |
| 2520 | templateRef: TemplateRef<SomeViewportContext>, |
| 2521 | ) { |
| 2522 | container.createEmbeddedView(templateRef, new SomeViewportContext('hello')); |
| 2523 | container.createEmbeddedView(templateRef, new SomeViewportContext('again')); |
| 2524 | } |
| 2525 | } |
| 2526 | |
| 2527 | @Directive({ |
nothing calls this directly
no test coverage detected