()
| 15184 | } |
| 15185 | // todo: remove |
| 15186 | _getCueMapAsObject() { |
| 15187 | let obj = {} |
| 15188 | const map = this._getCueMap() |
| 15189 | for (let [key, val] of map.entries()) { |
| 15190 | obj[key] = val |
| 15191 | } |
| 15192 | return obj |
| 15193 | } |
| 15194 | _getMatchingParser(block, parentParticle, lineNumber, atomBreakSymbol = ATOM_MEMBRANE) { |
| 15195 | return this._getCueMap().get(this._getCue(block, atomBreakSymbol)) || this._getParserFromRegexTests(block) || this._getCatchAllParser(parentParticle) |
| 15196 | } |
no test coverage detected