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