[PATCH] D74609: [clangd] Update the CompletionItemKind.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 14 06:33:29 PST 2020
hokein updated this revision to Diff 244646.
hokein marked 2 inline comments as done.
hokein added a comment.
address comment
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D74609/new/
https://reviews.llvm.org/D74609
Files:
clang-tools-extra/clangd/CodeComplete.cpp
clang-tools-extra/clangd/unittests/CodeCompleteTests.cpp
Index: clang-tools-extra/clangd/unittests/CodeCompleteTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/CodeCompleteTests.cpp
+++ clang-tools-extra/clangd/unittests/CodeCompleteTests.cpp
@@ -481,7 +481,7 @@
AllOf(Has("function", CompletionItemKind::Function),
Has("variable", CompletionItemKind::Variable),
Has("int", CompletionItemKind::Keyword),
- Has("Struct", CompletionItemKind::Class),
+ Has("Struct", CompletionItemKind::Struct),
Has("MACRO", CompletionItemKind::Text),
Has("indexFunction", CompletionItemKind::Function),
Has("indexVariable", CompletionItemKind::Variable),
@@ -529,6 +529,17 @@
AllOf(Named("complete_variable"), Kind(CompletionItemKind::Variable)),
AllOf(Named("complete_static_member"),
Kind(CompletionItemKind::Property))));
+
+ Results = completions(
+ R"cpp(
+ enum Color {
+ Red
+ };
+ Color u = ^
+ )cpp");
+ EXPECT_THAT(Results.Completions,
+ Contains(
+ AllOf(Named("Red"), Kind(CompletionItemKind::EnumMember))));
}
TEST(CompletionTest, NoDuplicates) {
Index: clang-tools-extra/clangd/CodeComplete.cpp
===================================================================
--- clang-tools-extra/clangd/CodeComplete.cpp
+++ clang-tools-extra/clangd/CodeComplete.cpp
@@ -87,9 +87,8 @@
return CompletionItemKind::Text;
case SK::Enum:
return CompletionItemKind::Enum;
- // FIXME(ioeric): use LSP struct instead of class when it is suppoted in the
- // protocol.
case SK::Struct:
+ return CompletionItemKind::Struct;
case SK::Class:
case SK::Protocol:
case SK::Extension:
@@ -102,8 +101,6 @@
case SK::Using:
return CompletionItemKind::Reference;
case SK::Function:
- // FIXME(ioeric): this should probably be an operator. This should be fixed
- // when `Operator` is support type in the protocol.
case SK::ConversionFunction:
return CompletionItemKind::Function;
case SK::Variable:
@@ -112,9 +109,8 @@
return CompletionItemKind::Variable;
case SK::Field:
return CompletionItemKind::Field;
- // FIXME(ioeric): use LSP enum constant when it is supported in the protocol.
case SK::EnumConstant:
- return CompletionItemKind::Value;
+ return CompletionItemKind::EnumMember;
case SK::InstanceMethod:
case SK::ClassMethod:
case SK::StaticMethod:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74609.244646.patch
Type: text/x-patch
Size: 2594 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200214/1b711e44/attachment-0001.bin>
More information about the cfe-commits
mailing list