| 41 | } |
| 42 | |
| 43 | inline absl::Status ConfigureParser(ParserBuilder& parser_builder) { |
| 44 | for (const Macro& macro : bindings_macros()) { |
| 45 | CEL_RETURN_IF_ERROR(parser_builder.AddMacro(macro)); |
| 46 | } |
| 47 | return absl::OkStatus(); |
| 48 | } |
| 49 | |
| 50 | } // namespace |
| 51 |
nothing calls this directly
no test coverage detected