| 159 | } |
| 160 | |
| 161 | absl::Status Config::AddFunctionConfig(const FunctionConfig& function_config) { |
| 162 | CEL_RETURN_IF_ERROR(ValidateFunctionConfig(function_config)); |
| 163 | function_configs_.push_back(function_config); |
| 164 | return absl::OkStatus(); |
| 165 | } |
| 166 | |
| 167 | std::ostream& operator<<(std::ostream& os, |
| 168 | const Config::StandardLibraryConfig& config) { |
no outgoing calls