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

Function IsExtensionCall

extensions/proto_ext.cc:74–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72}
73
74bool IsExtensionCall(const Expr& target) {
75 if (const auto* ident_expr =
76 target.has_ident_expr() ? &target.ident_expr() : nullptr;
77 ident_expr) {
78 return ident_expr->name() == kProtoNamespace;
79 }
80 return false;
81}
82
83absl::Status ConfigureParser(ParserBuilder& builder) {
84 for (const auto& macro : proto_macros()) {

Callers 1

proto_macrosFunction · 0.85

Calls 2

has_ident_exprMethod · 0.80
nameMethod · 0.45

Tested by

no test coverage detected