| 81 | } |
| 82 | |
| 83 | absl::Status ConfigureParser(ParserBuilder& builder) { |
| 84 | for (const auto& macro : proto_macros()) { |
| 85 | CEL_RETURN_IF_ERROR(builder.AddMacro(macro)); |
| 86 | } |
| 87 | return absl::OkStatus(); |
| 88 | } |
| 89 | |
| 90 | } // namespace |
| 91 |
nothing calls this directly
no test coverage detected