(block, atomBreakSymbol)
| 15208 | return undefined |
| 15209 | } |
| 15210 | _getCue(block, atomBreakSymbol) { |
| 15211 | const line = block.split(/\n/)[0] |
| 15212 | const firstBreak = line.indexOf(atomBreakSymbol) |
| 15213 | return line.substr(0, firstBreak > -1 ? firstBreak : undefined) |
| 15214 | } |
| 15215 | async appendParticleAsync(parentParticle, block) { |
| 15216 | const index = parentParticle.length |
| 15217 | const parser = this._getMatchingParser(block, parentParticle, index) |
no test coverage detected