(value, index)
| 19413 | return array; |
| 19414 | |
| 19415 | function getComparisonObject(value, index) { |
| 19416 | return { |
| 19417 | value: value, |
| 19418 | predicateValues: predicates.map(function(predicate) { |
| 19419 | return getPredicateValue(predicate.get(value), index); |
| 19420 | }) |
| 19421 | }; |
| 19422 | } |
| 19423 | |
| 19424 | function doComparison(v1, v2) { |
| 19425 | var result = 0; |
nothing calls this directly
no test coverage detected