(pos: number)
| 953 | } |
| 954 | |
| 955 | private graphemeAt(pos: number): string { |
| 956 | if (pos >= this.text.length) return '' |
| 957 | const nextOff = this.measuredText.nextOffset(pos) |
| 958 | return this.text.slice(pos, nextOff) |
| 959 | } |
| 960 | |
| 961 | private isOverWhitespace(): boolean { |
| 962 | const currentChar = this.text[this.offset] ?? '' |
no test coverage detected