* @private
()
| 567 | * @private |
| 568 | */ |
| 569 | _updateHiddenIndices() { |
| 570 | const {_hiddenIndices} = this; |
| 571 | const changes = this._getUniformDataChanges() || []; |
| 572 | for (const {method, start, count} of changes) { |
| 573 | const move = method === '_removeElements' ? -count : count; |
| 574 | moveNumericKeys(_hiddenIndices, start, move); |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | /** |
| 579 | * @private |
no test coverage detected