()
| 239 | input = viewChild.required<ElementRef<HTMLInputElement>>('input'); |
| 240 | |
| 241 | constructor() { |
| 242 | inject(FormField, {self: true, optional: true})?.registerAsBinding({ |
| 243 | focus: () => this.input().nativeElement.focus(), |
| 244 | }); |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | @Component({ |
nothing calls this directly
no test coverage detected