()
| 446 | } |
| 447 | |
| 448 | private isOnFirstVisualLine(): boolean { |
| 449 | const visualLines = this.buildVisualLineMap(this.lastWidth); |
| 450 | const currentVisualLine = this.findCurrentVisualLine(visualLines); |
| 451 | return currentVisualLine === 0; |
| 452 | } |
| 453 | |
| 454 | private isOnLastVisualLine(): boolean { |
| 455 | const visualLines = this.buildVisualLineMap(this.lastWidth); |
no test coverage detected