(final CompileContext cc)
| 52 | } |
| 53 | |
| 54 | @Override |
| 55 | public Expr compile(final CompileContext cc) throws QueryException { |
| 56 | for(final Catch ctch : catches) ctch.compile(cc); |
| 57 | expr = cc.compileOrError(expr, false); |
| 58 | fnlly = fnlly.compile(cc); |
| 59 | return optimize(cc); |
| 60 | } |
| 61 | |
| 62 | @Override |
| 63 | public Expr optimize(final CompileContext cc) throws QueryException { |
nothing calls this directly
no test coverage detected