[PATCH] D155558: [clangd][c++20] Add concept Hover tests.
Jens Massberg via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 18 01:20:16 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe9ab43dd44ca: [clangd][c++20] Add concept Hover tests. (authored by massberg).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D155558/new/
https://reviews.llvm.org/D155558
Files:
clang-tools-extra/clangd/unittests/HoverTests.cpp
Index: clang-tools-extra/clangd/unittests/HoverTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/HoverTests.cpp
+++ clang-tools-extra/clangd/unittests/HoverTests.cpp
@@ -523,6 +523,32 @@
HI.Kind = index::SymbolKind::TypeAlias;
HI.Definition = "Foo<int>";
}},
+ // constrained template parameter
+ {R"cpp(
+ template<class T> concept Fooable = true;
+ template<[[Foo^able]] T>
+ void bar(T t) {}
+ )cpp",
+ [](HoverInfo &HI) {
+ HI.NamespaceScope = "";
+ HI.Name = "Fooable";
+ HI.Kind = index::SymbolKind::Concept;
+ HI.Definition = "template <class T>\nconcept Fooable = true";
+ }},
+ {R"cpp(
+ template<class T> concept Fooable = true;
+ template<Fooable [[T^T]]>
+ void bar(TT t) {}
+ )cpp",
+ [](HoverInfo &HI) {
+ HI.Name = "TT";
+ HI.Type = "class";
+ HI.AccessSpecifier = "public";
+ HI.NamespaceScope = "";
+ HI.LocalScope = "bar::";
+ HI.Kind = index::SymbolKind::TemplateTypeParm;
+ HI.Definition = "Fooable TT";
+ }},
// empty macro
{R"cpp(
@@ -3025,17 +3051,17 @@
const char *Code;
const std::function<void(HoverInfo &)> ExpectedBuilder;
} Cases[] = {{R"cpp(
- struct Foo {};
+ struct Foo {};
Foo F = Fo^o{};
)cpp",
[](HoverInfo &HI) { HI.Provider = ""; }},
{R"cpp(
- #include "foo.h"
+ #include "foo.h"
Foo F = Fo^o{};
)cpp",
[](HoverInfo &HI) { HI.Provider = "\"foo.h\""; }},
{R"cpp(
- #include "all.h"
+ #include "all.h"
Foo F = Fo^o{};
)cpp",
[](HoverInfo &HI) { HI.Provider = "\"foo.h\""; }},
@@ -3055,7 +3081,7 @@
)cpp",
[](HoverInfo &HI) { HI.Provider = "\"foo.h\""; }},
{R"cpp(
- #include "foo.h"
+ #include "foo.h"
Foo A;
Foo B;
Foo C = A ^+ B;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D155558.541390.patch
Type: text/x-patch
Size: 2355 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230718/b75742f3/attachment.bin>
More information about the cfe-commits
mailing list