| 59 | class App {} |
| 60 | |
| 61 | @Component({ |
| 62 | selector: 'door', |
| 63 | template: `{{ frame.name }}(<span *ngFor="let lock of locks">{{ lock.name }}</span |
| 64 | >)`, |
| 65 | standalone: false, |
| 66 | }) |
| 67 | class Door { |
| 68 | @ContentChildren(forwardRef(() => Lock)) locks!: QueryList<Lock>; |
| 69 | frame: Frame; |
| 70 | |
| 71 | constructor(@Inject(forwardRef(() => Frame)) frame: Frame) { |
| 72 | this.frame = frame; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | @Directive({ |
| 77 | selector: 'lock', |
nothing calls this directly
no test coverage detected
searching dependent graphs…