(lines)
| 16616 | return this.getSubparticles().slice(index, index + newParticle.length) |
| 16617 | } |
| 16618 | insertLinesAfter(lines) { |
| 16619 | return this.parent._insertLines(lines, this.index + 1) |
| 16620 | } |
| 16621 | _appendSubparticlesFromString(str) { |
| 16622 | const { edgeSymbol, particleBreakSymbol } = this |
| 16623 | const blocks = splitBlocks(str, edgeSymbol, particleBreakSymbol) |
nothing calls this directly
no test coverage detected