Home
last modified time | relevance | path

Searched refs:FileChangeType (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DProtocol.h740 enum class FileChangeType { enum
748 bool fromJSON(const llvm::json::Value &E, FileChangeType &Out,
755 FileChangeType type = FileChangeType::Created;
H A DProtocol.cpp530 bool fromJSON(const llvm::json::Value &E, FileChangeType &Out, in fromJSON()
533 if (*T < static_cast<int>(FileChangeType::Created) || in fromJSON()
534 *T > static_cast<int>(FileChangeType::Deleted)) in fromJSON()
536 Out = static_cast<FileChangeType>(*T); in fromJSON()