(prefix)
| 98 | } |
| 99 | |
| 100 | test(prefix) { |
| 101 | let {group, value} = this.resolveAggregate(prefix); |
| 102 | let resultGroup = this.aggregateResults[JSON.stringify(group)]; |
| 103 | if(resultGroup !== undefined) { |
| 104 | let returns = resolve(this.returns, prefix, this.resolvedReturns); |
| 105 | return returns[0] === resultGroup[JSON.stringify(value)]; |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | getProposal(multiIndex, proposed, prefix) { |
| 110 | let {group} = this.resolveAggregate(prefix); |
nothing calls this directly
no test coverage detected