()
| 19581 | return result |
| 19582 | } |
| 19583 | get topParserDefinitions() { |
| 19584 | const arr = Object.values(this.cueMapWithDefinitions) |
| 19585 | arr.sort(Utils.makeSortByFn(definition => definition.popularity)) |
| 19586 | arr.reverse() |
| 19587 | return arr |
| 19588 | } |
| 19589 | _getMyInScopeParserIds(target = this) { |
| 19590 | const parsersParticle = target.getParticle(ParsersConstants.inScope) |
| 19591 | const scopedDefinitionIds = target.myScopedParserDefinitions.map(def => def.id) |
nothing calls this directly
no test coverage detected