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