MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / PostVisitArg

Method PostVisitArg

eval/compiler/flat_expr_builder.cc:1474–1482  ·  view source on GitHub ↗

Invoked after each argument node processed.

Source from the content-addressed store, hash-verified

1472
1473 // Invoked after each argument node processed.
1474 void PostVisitArg(const cel::Expr& expr, int arg_num) override {
1475 if (!progress_status_.ok()) {
1476 return;
1477 }
1478 auto cond_visitor = FindCondVisitor(&expr);
1479 if (cond_visitor) {
1480 cond_visitor->PostVisitArg(arg_num, &expr);
1481 }
1482 }
1483
1484 void PostVisitTarget(const cel::Expr& expr) override {
1485 if (!progress_status_.ok()) {

Callers

nothing calls this directly

Calls 2

okMethod · 0.45
PostVisitArgMethod · 0.45

Tested by

no test coverage detected