(final CompileContext cc)
| 54 | } |
| 55 | |
| 56 | @Override |
| 57 | public Expr compile(final CompileContext cc) throws QueryException { |
| 58 | cond = cond.compile(cc); |
| 59 | |
| 60 | final int el = exprs.length; |
| 61 | for(int e = 0; e < el; e++) { |
| 62 | exprs[e] = cc.compileOrError(exprs[e], false); |
| 63 | } |
| 64 | return optimize(cc); |
| 65 | } |
| 66 | |
| 67 | @Override |
| 68 | public Expr optimize(final CompileContext cc) throws QueryException { |
nothing calls this directly
no test coverage detected