@internal
(index: number, content: string)
| 463 | |
| 464 | /** @internal */ |
| 465 | insertRight(index: number, content: string): this { |
| 466 | if (!warned.insertRight) { |
| 467 | console.warn( |
| 468 | 'magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead', |
| 469 | ) |
| 470 | warned.insertRight = true |
| 471 | } |
| 472 | |
| 473 | return this.prependRight(index, content) |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * Moves the characters from `start` and `end` to `index`. |
nothing calls this directly
no test coverage detected