MCPcopy Create free account
hub / github.com/BaseXdb/basex / compile

Method compile

basex-core/src/main/java/org/basex/query/expr/Try.java:54–60  ·  view source on GitHub ↗
(final CompileContext cc)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 3

optimizeMethod · 0.95
compileOrErrorMethod · 0.80
compileMethod · 0.65

Tested by

no test coverage detected