(final Item item, final Collation coll, final boolean transitive,
final InputInfo ii)
| 74 | } |
| 75 | |
| 76 | @Override |
| 77 | public int compare(final Item item, final Collation coll, final boolean transitive, |
| 78 | final InputInfo ii) throws QueryException { |
| 79 | return item.type.isStringOrUntyped() ? |
| 80 | Token.compare(value, item.string(ii), Collation.get(coll, ii)) : |
| 81 | -item.compare(this, coll, transitive, ii); |
| 82 | } |
| 83 | |
| 84 | @Override |
| 85 | public Expr simplifyFor(final Simplify mode, final CompileContext cc) throws QueryException { |
nothing calls this directly
no test coverage detected