(pos: number)
| 978 | } |
| 979 | |
| 980 | private graphemeAt(pos: number): string { |
| 981 | if (pos >= this.text.length) return '' |
| 982 | const nextOff = this.measuredText.nextOffset(pos) |
| 983 | return this.text.slice(pos, nextOff) |
| 984 | } |
| 985 | |
| 986 | private isOverWhitespace(): boolean { |
| 987 | const currentChar = this.text[this.offset] ?? '' |
no test coverage detected