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

Method toString

basex-core/src/main/java/org/basex/query/expr/Catch.java:189–198  ·  view source on GitHub ↗
(final QueryString qs)

Source from the content-addressed store, hash-verified

187 }
188
189 @Override
190 public void toString(final QueryString qs) {
191 qs.token(CATCH);
192 int c = 0;
193 for(final Test test : tests) {
194 if(c++ > 0) qs.token('|');
195 qs.token(test.toString(false));
196 }
197 qs.brace(expr);
198 }
199}

Callers

nothing calls this directly

Calls 3

braceMethod · 0.80
tokenMethod · 0.65
toStringMethod · 0.65

Tested by

no test coverage detected