| 3212 | standalone: false, |
| 3213 | }) |
| 3214 | export class StructDir { |
| 3215 | constructor( |
| 3216 | private vcref: ViewContainerRef, |
| 3217 | private tplRef: TemplateRef<any>, |
| 3218 | ) {} |
| 3219 | |
| 3220 | create() { |
| 3221 | this.vcref.createEmbeddedView(this.tplRef); |
| 3222 | } |
| 3223 | |
| 3224 | destroy() { |
| 3225 | this.vcref.clear(); |
| 3226 | } |
| 3227 | } |
| 3228 | |
| 3229 | @Component({ |
| 3230 | selector: 'destroy-cases', |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…