Add a cell to this section.
({index}: Index)
| 20 | |
| 21 | /** Add a cell to this section. */ |
| 22 | addCellIndex({index}: Index) { |
| 23 | if (!this._indexMap[index]) { |
| 24 | this._indexMap[index] = true; |
| 25 | this._indices.push(index); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | /** Get all cell indices that have been added to this section. */ |
| 30 | getCellIndices(): Array<number> { |
no outgoing calls
no test coverage detected