()
| 354 | } |
| 355 | |
| 356 | private moveWordForwards(): void { |
| 357 | if (this.cursor >= this.value.length) return; |
| 358 | this.lastAction = null; |
| 359 | this.cursor = findWordForward(this.value, this.cursor); |
| 360 | } |
| 361 | |
| 362 | private handlePaste(pastedText: string): void { |
| 363 | this.lastAction = null; |
no test coverage detected