(e: CustomEvent<TableRowSelectionRequestedEventDetail>)
| 988 | } |
| 989 | |
| 990 | _handleSelect(e: CustomEvent<TableRowSelectionRequestedEventDetail>) { |
| 991 | if (this.isSingleSelect) { |
| 992 | this._handleSingleSelect(e); |
| 993 | return; |
| 994 | } |
| 995 | |
| 996 | if (this.isMultiSelect) { |
| 997 | this._handleMultiSelect(e); |
| 998 | } |
| 999 | } |
| 1000 | |
| 1001 | _selectAll() { |
| 1002 | const bAllSelected = !this._allRowsSelected; |
nothing calls this directly
no test coverage detected