| 376 | } |
| 377 | |
| 378 | @Directive({ |
| 379 | selector: '[dir]', |
| 380 | hostDirectives: [FirstHostDir], |
| 381 | standalone: false, |
| 382 | }) |
| 383 | class Host { |
| 384 | constructor() { |
| 385 | hostInstance = this; |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | @Component({ |
| 390 | template: '<div dir></div>', |
no test coverage detected
searching dependent graphs…