(final QueryContext qc, final InputInfo ii, final long pos)
| 96 | } |
| 97 | |
| 98 | @Override |
| 99 | public boolean test(final QueryContext qc, final InputInfo ii, final long pos) |
| 100 | throws QueryException { |
| 101 | final Item item1 = exprs[0].atomItem(qc, info); |
| 102 | if(item1 == Empty.VALUE) return false; |
| 103 | final Item item2 = exprs[1].atomItem(qc, info); |
| 104 | if(item2 == Empty.VALUE) return false; |
| 105 | return test(item1, item2); |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * Performs the test. |
no test coverage detected