(block)
| 15201 | return contextParticle.constructor |
| 15202 | } |
| 15203 | _getParserFromRegexTests(block) { |
| 15204 | if (!this._regexTests) return undefined |
| 15205 | const line = block.split(/\n/)[0] |
| 15206 | const hit = this._regexTests.find(test => test.regex.test(line)) |
| 15207 | if (hit) return hit.parser |
| 15208 | return undefined |
| 15209 | } |
| 15210 | _getCue(block, atomBreakSymbol) { |
| 15211 | const line = block.split(/\n/)[0] |
| 15212 | const firstBreak = line.indexOf(atomBreakSymbol) |
no test coverage detected