(final CompileContext cc)
| 28 | } |
| 29 | |
| 30 | @Override |
| 31 | public final Expr compile(final CompileContext cc) throws QueryException { |
| 32 | final int el = exprs.length; |
| 33 | for(int e = 0; e < el; e++) { |
| 34 | exprs[e] = cc.compileOrError(exprs[e], e == 0); |
| 35 | } |
| 36 | return optimize(cc); |
| 37 | } |
| 38 | |
| 39 | @Override |
| 40 | public final Expr optimize(final CompileContext cc) throws QueryException { |
nothing calls this directly
no test coverage detected