()
| 17478 | return this |
| 17479 | } |
| 17480 | shiftLeft() { |
| 17481 | const grandParent = this._getGrandParent() |
| 17482 | if (!grandParent) return this |
| 17483 | const parentIndex = this.parent.index |
| 17484 | const newParticle = grandParent.insertLineAndSubparticles(this.getLine(), this.length ? this.subparticlesToString() : undefined, parentIndex + 1) |
| 17485 | this.destroy() |
| 17486 | return newParticle |
| 17487 | } |
| 17488 | pasteText(text) { |
| 17489 | const parent = this.parent |
| 17490 | const index = this.index |
nothing calls this directly
no test coverage detected