(final CompileContext cc)
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public Expr compile(final CompileContext cc) throws QueryException { |
| 47 | final int el = exprs.length; |
| 48 | for(int e = 0; e < el; e++) exprs[e] = exprs[e].compile(cc); |
| 49 | return optimize(cc); |
| 50 | } |
| 51 | |
| 52 | @Override |
| 53 | public boolean has(final Flag... flags) { |