()
| 864 | } |
| 865 | |
| 866 | private getText(): string { |
| 867 | const selectedText = this.selectedText; |
| 868 | if (selectedText != null && selectedText !== '') { |
| 869 | return selectedText; |
| 870 | } |
| 871 | return generateText(this.childOpts, this.value, this.compareWith); |
| 872 | } |
| 873 | |
| 874 | private setFocus() { |
| 875 | if (this.focusEl) { |
no test coverage detected