(str)
| 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) |
| 16624 | const parserPool = this._getParserPool() |
| 16625 | return blocks.map((block, index) => parserPool.createParticle(this, block)) |
| 16626 | } |
| 16627 | async _appendBlockAsync(block) { |
| 16628 | // We need to keep grapping the parserPool in case it changed. |
| 16629 | // todo: cleanup and perf optimize |
no test coverage detected