()
| 348 | } |
| 349 | |
| 350 | private moveWordBackwards(): void { |
| 351 | if (this.cursor === 0) return; |
| 352 | this.lastAction = null; |
| 353 | this.cursor = findWordBackward(this.value, this.cursor); |
| 354 | } |
| 355 | |
| 356 | private moveWordForwards(): void { |
| 357 | if (this.cursor >= this.value.length) return; |
no test coverage detected