| 9 | } |
| 10 | |
| 11 | void FileDB::ApplyFileUpdate(std::size_t fileId, std::string &&text) { |
| 12 | auto ptr = std::make_shared<std::string>(std::move(text)); |
| 13 | Input(fileId, std::move(ptr)); |
| 14 | } |
| 15 | |
| 16 | void FileDB::ApplyFileUpdate(std::vector<lsp::TextDocumentContentChangeEvent> &changeEvent) { |
| 17 | } |