(index: number)
| 481 | let chunk = this.firstChunk |
| 482 | |
| 483 | const indentAt = (index: number) => { |
| 484 | shouldIndentNextCharacter = false |
| 485 | |
| 486 | if (index === chunk!.start) { |
| 487 | // `appendRight` rather than `prependRight`, so that the indent lands |
| 488 | // directly in front of the content rather than in front of an intro |
| 489 | // that has already been indented in its own right |
| 490 | chunk!.appendRight(resolvedIndentStr) |
| 491 | } |
| 492 | else { |
| 493 | this._splitChunk(chunk!, index) |
| 494 | chunk = chunk!.next |
| 495 | chunk!.prependRight(resolvedIndentStr) |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | while (chunk) { |
| 500 | const end = chunk.end |
nothing calls this directly
no test coverage detected