* Adjusts a negative index by summing it with the length of the array. For very negative * indices, the result may remain negative. * @internal
(index: number)
| 508 | * @internal |
| 509 | */ |
| 510 | private _adjustIndex(index: number): number { |
| 511 | return index < 0 ? index + this.length : index; |
| 512 | } |
| 513 | |
| 514 | /** @internal */ |
| 515 | override _syncPendingControls(): boolean { |
no outgoing calls
no test coverage detected