| 1359 | } |
| 1360 | |
| 1361 | absl::StatusOr<Value> StringValue::Replace( |
| 1362 | const StringValue& needle, const StringValue& replacement, int64_t limit, |
| 1363 | google::protobuf::Arena* absl_nonnull arena) const { |
| 1364 | Value result; |
| 1365 | CEL_RETURN_IF_ERROR(Replace(needle, replacement, limit, arena, &result)); |
| 1366 | return result; |
| 1367 | } |
| 1368 | |
| 1369 | absl::Status StringValue::Replace(const StringValue& needle, |
| 1370 | const StringValue& replacement, |
no test coverage detected