| 86 | } |
| 87 | |
| 88 | std::string FileRepository::uriToSourceUnitName(std::string const& _path) const |
| 89 | { |
| 90 | lspRequire(boost::algorithm::starts_with(_path, "file://"), ErrorCode::InternalError, "URI must start with file://"); |
| 91 | return stripFileUriSchemePrefix(_path); |
| 92 | } |
| 93 | |
| 94 | void FileRepository::setSourceByUri(std::string const& _uri, std::string _source) |
| 95 | { |
no test coverage detected