()
| 231 | input = viewChild.required<ElementRef<HTMLInputElement>>('input'); |
| 232 | |
| 233 | constructor() { |
| 234 | inject(FormField, {self: true, optional: true})?.registerAsBinding({ |
| 235 | focus: () => this.input().nativeElement.focus(), |
| 236 | }); |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | @Component({ |
nothing calls this directly
no test coverage detected