()
| 928 | } |
| 929 | |
| 930 | _getNextOptionIndex() { |
| 931 | return this._selectedIndex === (this.options.length - 1) ? this._selectedIndex : (this._selectedIndex + 1); |
| 932 | } |
| 933 | |
| 934 | _getPreviousOptionIndex() { |
| 935 | return this._selectedIndex === 0 ? this._selectedIndex : (this._selectedIndex - 1); |
no outgoing calls
no test coverage detected