| 85 | class SomeComp {} |
| 86 | |
| 87 | @Directive({ |
| 88 | selector: '[someDir]', |
| 89 | standalone: false, |
| 90 | }) |
| 91 | class SomeDirective { |
| 92 | @HostBinding('title') @Input() someDir: string | undefined; |
| 93 | } |
| 94 | |
| 95 | @Pipe({ |
| 96 | name: 'somePipe', |
nothing calls this directly
no test coverage detected
searching dependent graphs…