(index: number)
| 378 | let chunk = this.firstChunk |
| 379 | |
| 380 | const indentAt = (index: number) => { |
| 381 | shouldIndentNextCharacter = false |
| 382 | |
| 383 | if (index === chunk!.start) { |
| 384 | chunk!.prependRight(resolvedIndentStr) |
| 385 | } |
| 386 | else { |
| 387 | this._splitChunk(chunk!, index) |
| 388 | chunk = chunk!.next |
| 389 | chunk!.prependRight(resolvedIndentStr) |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | while (chunk) { |
| 394 | const end = chunk.end |
nothing calls this directly
no test coverage detected