| 77 | } |
| 78 | |
| 79 | @Directive({ |
| 80 | selector: '[dir]', |
| 81 | host: {'host-attr': '', 'class': 'dir', 'style': 'width: 50px'}, |
| 82 | hostDirectives: [HostDir], |
| 83 | standalone: false, |
| 84 | }) |
| 85 | class Dir { |
| 86 | constructor() { |
| 87 | logs.push('Dir'); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | @Component({ |
| 92 | template: '<div dir></div>', |
nothing calls this directly
no test coverage detected