@internal
(index: number, content: string)
| 474 | |
| 475 | /** @internal */ |
| 476 | insertRight(index: number, content: string): this { |
| 477 | if (!warned.insertRight) { |
| 478 | console.warn( |
| 479 | 'magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead', |
| 480 | ) |
| 481 | warned.insertRight = true |
| 482 | } |
| 483 | |
| 484 | return this.prependRight(index, content) |
| 485 | } |
| 486 | |
| 487 | /** |
| 488 | * Moves the characters from `start` and `end` to `index`. |
nothing calls this directly
no test coverage detected