(position)
| 472 | } |
| 473 | |
| 474 | getCharacterAtPosition(position) { |
| 475 | const { index, offset } = this.locationFromPosition(position) |
| 476 | return this.getTextAtIndex(index).getStringAtRange([ offset, offset + 1 ]) |
| 477 | } |
| 478 | |
| 479 | getLength() { |
| 480 | return this.blockList.getEndPosition() |
no test coverage detected