(index, content)
| 310 | } |
| 311 | |
| 312 | insertRight(index, content) { |
| 313 | if (!warned.insertRight) { |
| 314 | console.warn( |
| 315 | 'magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead', |
| 316 | ); |
| 317 | warned.insertRight = true; |
| 318 | } |
| 319 | |
| 320 | return this.prependRight(index, content); |
| 321 | } |
| 322 | |
| 323 | move(start, end, index) { |
| 324 | start = start + this.offset; |
nothing calls this directly
no test coverage detected