| 107 | namespace { |
| 108 | |
| 109 | bool IsCelNamespace(const cel::Expr& target) { |
| 110 | return target.has_ident_expr() && target.ident_expr().name() == "cel"; |
| 111 | } |
| 112 | |
| 113 | absl::optional<cel::Expr> CelBlockMacroExpander(cel::MacroExprFactory& factory, |
| 114 | cel::Expr& target, |
no test coverage detected