(index, content)
| 458 | ); |
| 459 | } |
| 460 | insertLeft(index, content) { |
| 461 | if (!warned.insertLeft) { |
| 462 | console.warn( |
| 463 | 'magicString.insertLeft(...) is deprecated. Use magicString.appendLeft(...) instead', |
| 464 | ); |
| 465 | warned.insertLeft = true; |
| 466 | } |
| 467 | return this.appendLeft(index, content); |
| 468 | } |
| 469 | insertRight(index, content) { |
| 470 | if (!warned.insertRight) { |
| 471 | console.warn( |
nothing calls this directly
no test coverage detected