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

Method accept

basex-core/src/main/java/org/basex/query/func/Closure.java:432–440  ·  view source on GitHub ↗
(final ASTVisitor visitor)

Source from the content-addressed store, hash-verified

430 }
431
432 @Override
433 public boolean accept(final ASTVisitor visitor) {
434 return !dontEnter && (boolean) enter(() -> {
435 for(final Expr ex : global.values()) {
436 if(!ex.accept(visitor)) return false;
437 }
438 return visitor.inlineFunc(this);
439 });
440 }
441
442 @Override
443 public int exprSize() {

Callers

nothing calls this directly

Calls 4

enterMethod · 0.95
acceptMethod · 0.65
valuesMethod · 0.45
inlineFuncMethod · 0.45

Tested by

no test coverage detected