()
| 453 | return this; |
| 454 | } |
| 455 | insert() { |
| 456 | throw new Error( |
| 457 | 'magicString.insert(...) is deprecated. Use prependRight(...) or appendLeft(...)', |
| 458 | ); |
| 459 | } |
| 460 | insertLeft(index, content) { |
| 461 | if (!warned.insertLeft) { |
| 462 | console.warn( |
nothing calls this directly
no outgoing calls
no test coverage detected