[llvm-branch-commits] [clang-tools-extra] 62b4a69 - [clangd] Use enumMember instead of enumConstant
Nathan James via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Dec 11 06:50:56 PST 2020
Author: Nathan James
Date: 2020-12-11T14:46:13Z
New Revision: 62b4a69969c38158ce0c49803c50c32a76bbbe14
URL: https://github.com/llvm/llvm-project/commit/62b4a69969c38158ce0c49803c50c32a76bbbe14
DIFF: https://github.com/llvm/llvm-project/commit/62b4a69969c38158ce0c49803c50c32a76bbbe14.diff
LOG: [clangd] Use enumMember instead of enumConstant
We should be using enumMember as thats defined in LSP, enumConstant is non standard so clients aren't likely to support it
Fixes https://github.com/clangd/clangd/issues/622n
Reviewed By: sammccall
Differential Revision: https://reviews.llvm.org/D93113
Added:
Modified:
clang-tools-extra/clangd/SemanticHighlighting.cpp
Removed:
################################################################################
diff --git a/clang-tools-extra/clangd/SemanticHighlighting.cpp b/clang-tools-extra/clangd/SemanticHighlighting.cpp
index 1022ccd0b15f..be0a5437cde6 100644
--- a/clang-tools-extra/clangd/SemanticHighlighting.cpp
+++ b/clang-tools-extra/clangd/SemanticHighlighting.cpp
@@ -571,7 +571,7 @@ llvm::StringRef toSemanticTokenType(HighlightingKind Kind) {
case HighlightingKind::Enum:
return "enum";
case HighlightingKind::EnumConstant:
- return "enumConstant"; // nonstandard
+ return "enumMember";
case HighlightingKind::Typedef:
return "type";
case HighlightingKind::DependentType:
More information about the llvm-branch-commits
mailing list