()
| 428 | } |
| 429 | |
| 430 | endOfLine(): Cursor { |
| 431 | const { line } = this.getPosition() |
| 432 | const column = this.measuredText.getLineLength(line) |
| 433 | const offset = this.getOffset({ line, column }) |
| 434 | return new Cursor(this.measuredText, offset, 0) |
| 435 | } |
| 436 | |
| 437 | // Helper methods for finding logical line boundaries |
| 438 | private findLogicalLineStart(fromOffset: number = this.offset): number { |
no test coverage detected