(value, index)
| 20429 | return array; |
| 20430 | |
| 20431 | function getComparisonObject(value, index) { |
| 20432 | return { |
| 20433 | value: value, |
| 20434 | predicateValues: predicates.map(function(predicate) { |
| 20435 | return getPredicateValue(predicate.get(value), index); |
| 20436 | }) |
| 20437 | }; |
| 20438 | } |
| 20439 | |
| 20440 | function doComparison(v1, v2) { |
| 20441 | var result = 0; |
nothing calls this directly
no test coverage detected