(t, e)
| 366 | ); |
| 367 | } |
| 368 | insertLeft(t, e) { |
| 369 | return ( |
| 370 | c.insertLeft || |
| 371 | (console.warn( |
| 372 | 'magicString.insertLeft(...) is deprecated. Use magicString.appendLeft(...) instead', |
| 373 | ), |
| 374 | (c.insertLeft = !0)), |
| 375 | this.appendLeft(t, e) |
| 376 | ); |
| 377 | } |
| 378 | insertRight(t, e) { |
| 379 | return ( |
| 380 | c.insertRight || |
nothing calls this directly
no test coverage detected