(range)
| 433 | } |
| 434 | |
| 435 | getDocumentAtRange(range) { |
| 436 | range = normalizeRange(range) |
| 437 | const blocks = this.blockList.getSplittableListInRange(range).toArray() |
| 438 | return new this.constructor(blocks) |
| 439 | } |
| 440 | |
| 441 | getStringAtRange(range) { |
| 442 | let endIndex |
no test coverage detected