| 1209 | } |
| 1210 | |
| 1211 | absl::StatusOr<Value> StringValue::Join( |
| 1212 | const ListValue& list, |
| 1213 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 1214 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 1215 | google::protobuf::Arena* absl_nonnull arena) const { |
| 1216 | Value result; |
| 1217 | CEL_RETURN_IF_ERROR( |
| 1218 | Join(list, descriptor_pool, message_factory, arena, &result)); |
| 1219 | return result; |
| 1220 | } |
| 1221 | |
| 1222 | absl::Status StringValue::Join( |
| 1223 | const ListValue& list, |