| 94 | } |
| 95 | |
| 96 | Status AppendStatus(Status prior, absl::string_view context) { |
| 97 | CHECK(!prior.ok()); |
| 98 | return Status{prior.code(), |
| 99 | absl::StrCat(prior.error_message(), ": ", context)}; |
| 100 | } |
| 101 | |
| 102 | string Reindent(absl::string_view original, |
| 103 | const absl::string_view indentation) { |
no test coverage detected