22
22
#include " llvm/Support/ScopedPrinter.h"
23
23
#include " gmock/gmock.h"
24
24
#include " gtest/gtest.h"
25
+ #include < string>
25
26
26
27
namespace clang {
27
28
namespace clangd {
@@ -588,7 +589,7 @@ TEST(Hover, Structured) {
588
589
HI.Documentation = " Best foo ever." ;
589
590
HI.Definition = " void foo()" ;
590
591
HI.ReturnType = " void" ;
591
- HI.Type = " void()" ;
592
+ HI.Type = " void ()" ;
592
593
HI.Parameters .emplace ();
593
594
}},
594
595
// Inside namespace
@@ -605,7 +606,7 @@ TEST(Hover, Structured) {
605
606
HI.Documentation = " Best foo ever." ;
606
607
HI.Definition = " void foo()" ;
607
608
HI.ReturnType = " void" ;
608
- HI.Type = " void()" ;
609
+ HI.Type = " void ()" ;
609
610
HI.Parameters .emplace ();
610
611
}},
611
612
// Field
@@ -733,7 +734,7 @@ class Foo {})cpp";
733
734
bool Q = false, class... Ts>
734
735
void foo())cpp" ;
735
736
HI.ReturnType = " void" ;
736
- HI.Type = " void()" ;
737
+ HI.Type = " void ()" ;
737
738
HI.Parameters .emplace ();
738
739
HI.TemplateParameters = {
739
740
{std::string (" template <typename, bool...> class" ),
@@ -759,12 +760,76 @@ void foo())cpp";
759
760
HI.Kind = SymbolKind::Function;
760
761
HI.Definition = " Foo<bool, true, false> foo(int, bool T = false)" ;
761
762
HI.ReturnType = " Foo<bool, true, false>" ;
762
- HI.Type = " Foo<bool, true, false>(int, bool)" ;
763
+ HI.Type = " Foo<bool, true, false> (int, bool)" ;
763
764
HI.Parameters = {
764
765
{std::string (" int" ), llvm::None, llvm::None},
765
766
{std::string (" bool" ), std::string (" T" ), std::string (" false" )},
766
767
};
767
768
}},
769
+ // Pointers to lambdas
770
+ {R"cpp(
771
+ void foo() {
772
+ auto lamb = [](int T, bool B) -> bool { return T && B; };
773
+ auto *b = &lamb;
774
+ auto *[[^c]] = &b;
775
+ }
776
+ )cpp" ,
777
+ [](HoverInfo &HI) {
778
+ HI.NamespaceScope = " " ;
779
+ HI.LocalScope = " foo::" ;
780
+ HI.Name = " c" ;
781
+ HI.Kind = SymbolKind::Variable;
782
+ HI.Definition = " auto *c = &b" ;
783
+ HI.Type = " class (lambda) **" ;
784
+ HI.ReturnType = " bool" ;
785
+ HI.Parameters = {
786
+ {std::string (" int" ), std::string (" T" ), llvm::None},
787
+ {std::string (" bool" ), std::string (" B" ), llvm::None},
788
+ };
789
+ return HI;
790
+ }},
791
+ // Lambda parameter with decltype reference
792
+ {R"cpp(
793
+ auto lamb = [](int T, bool B) -> bool { return T && B; };
794
+ void foo(decltype(lamb)& bar) {
795
+ [[ba^r]](0, false);
796
+ }
797
+ )cpp" ,
798
+ [](HoverInfo &HI) {
799
+ HI.NamespaceScope = " " ;
800
+ HI.LocalScope = " foo::" ;
801
+ HI.Name = " bar" ;
802
+ HI.Kind = SymbolKind::Variable;
803
+ HI.Definition = " decltype(lamb) &bar" ;
804
+ HI.Type = " decltype(lamb) &" ;
805
+ HI.ReturnType = " bool" ;
806
+ HI.Parameters = {
807
+ {std::string (" int" ), std::string (" T" ), llvm::None},
808
+ {std::string (" bool" ), std::string (" B" ), llvm::None},
809
+ };
810
+ return HI;
811
+ }},
812
+ // Lambda parameter with decltype
813
+ {R"cpp(
814
+ auto lamb = [](int T, bool B) -> bool { return T && B; };
815
+ void foo(decltype(lamb) bar) {
816
+ [[ba^r]](0, false);
817
+ }
818
+ )cpp" ,
819
+ [](HoverInfo &HI) {
820
+ HI.NamespaceScope = " " ;
821
+ HI.LocalScope = " foo::" ;
822
+ HI.Name = " bar" ;
823
+ HI.Kind = SymbolKind::Variable;
824
+ HI.Definition = " decltype(lamb) bar" ;
825
+ HI.Type = " class (lambda)" ;
826
+ HI.ReturnType = " bool" ;
827
+ HI.Parameters = {
828
+ {std::string (" int" ), std::string (" T" ), llvm::None},
829
+ {std::string (" bool" ), std::string (" B" ), llvm::None},
830
+ };
831
+ return HI;
832
+ }},
768
833
// Lambda variable
769
834
{R"cpp(
770
835
void foo() {
@@ -779,7 +844,12 @@ void foo())cpp";
779
844
HI.Name = " lamb" ;
780
845
HI.Kind = SymbolKind::Variable;
781
846
HI.Definition = " auto lamb = [&bar](int T, bool B) -> bool {}" ;
782
- HI.Type = std::string (" class (lambda)" );
847
+ HI.Type = " class (lambda)" ;
848
+ HI.ReturnType = " bool" ;
849
+ HI.Parameters = {
850
+ {std::string (" int" ), std::string (" T" ), llvm::None},
851
+ {std::string (" bool" ), std::string (" B" ), llvm::None},
852
+ };
783
853
return HI;
784
854
}},
785
855
// Local variable in lambda
0 commit comments