(value, index)
| 19268 | return array; |
| 19269 | |
| 19270 | function getComparisonObject(value, index) { |
| 19271 | return { |
| 19272 | value: value, |
| 19273 | predicateValues: predicates.map(function(predicate) { |
| 19274 | return getPredicateValue(predicate.get(value), index); |
| 19275 | }) |
| 19276 | }; |
| 19277 | } |
| 19278 | |
| 19279 | function doComparison(v1, v2) { |
| 19280 | var result = 0; |
nothing calls this directly
no test coverage detected