| 202 | } |
| 203 | |
| 204 | Status AssertNoTrailingSlash(std::string_view key) { |
| 205 | if (HasTrailingSlash(key)) { |
| 206 | return NotAFile(key); |
| 207 | } |
| 208 | return Status::OK(); |
| 209 | } |
| 210 | |
| 211 | Result<std::string> MakeAbstractPathRelative(const std::string& base, |
| 212 | const std::string& path) { |
no test coverage detected