(position)
| 467 | } |
| 468 | |
| 469 | getPieceAtPosition(position) { |
| 470 | const { index, offset } = this.locationFromPosition(position) |
| 471 | return this.getTextAtIndex(index).getPieceAtPosition(offset) |
| 472 | } |
| 473 | |
| 474 | getCharacterAtPosition(position) { |
| 475 | const { index, offset } = this.locationFromPosition(position) |
nothing calls this directly
no test coverage detected