| 37 | static constexpr char kUnusedIterVar[] = "#unused"; |
| 38 | |
| 39 | bool IsTargetNamespace(const Expr& target) { |
| 40 | return target.has_ident_expr() && target.ident_expr().name() == kCelNamespace; |
| 41 | } |
| 42 | |
| 43 | inline absl::Status ConfigureParser(ParserBuilder& parser_builder) { |
| 44 | for (const Macro& macro : bindings_macros()) { |
no test coverage detected