Skip to content

Commit 1fbb1d6

Browse files
committed
[clangd] Drop returntype/type when hovering over type-ish names
Summary: Some names, e.g. constructor/destructor/conversions, already contain the type info, no need to duplicate them in the hoverinfo. Fixes clangd/clangd#252 Reviewers: sammccall, ilya-biryukov Subscribers: MaskRay, jkorous, arphaman, usaxena95, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D73110
1 parent 1256d68 commit 1fbb1d6

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

clang-tools-extra/clangd/Hover.cpp

+12-13
Original file line numberDiff line numberDiff line change
@@ -266,20 +266,19 @@ void fillFunctionTypeAndParams(HoverInfo &HI, const Decl *D,
266266
}
267267
}
268268

269-
if (const auto *CCD = llvm::dyn_cast<CXXConstructorDecl>(FD)) {
270-
// Constructor's "return type" is the class type.
271-
HI.ReturnType = declaredType(CCD->getParent()).getAsString(Policy);
272-
// Don't provide any type for the constructor itself.
273-
} else if (llvm::isa<CXXDestructorDecl>(FD)) {
274-
HI.ReturnType = "void";
275-
} else {
276-
HI.ReturnType = printType(FD->getReturnType(), Policy);
269+
// We don't want any type info, if name already contains it. This is true for
270+
// constructors/destructors and conversion operators.
271+
const auto NK = FD->getDeclName().getNameKind();
272+
if (NK == DeclarationName::CXXConstructorName ||
273+
NK == DeclarationName::CXXDestructorName ||
274+
NK == DeclarationName::CXXConversionFunctionName)
275+
return;
277276

278-
QualType QT = FD->getType();
279-
if (const VarDecl *VD = llvm::dyn_cast<VarDecl>(D)) // Lambdas
280-
QT = VD->getType().getDesugaredType(D->getASTContext());
281-
HI.Type = printType(QT, Policy);
282-
}
277+
HI.ReturnType = printType(FD->getReturnType(), Policy);
278+
QualType QT = FD->getType();
279+
if (const VarDecl *VD = llvm::dyn_cast<VarDecl>(D)) // Lambdas
280+
QT = VD->getType().getDesugaredType(D->getASTContext());
281+
HI.Type = printType(QT, Policy);
283282
// FIXME: handle variadics.
284283
}
285284

clang-tools-extra/clangd/unittests/HoverTests.cpp

+9-2
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,6 @@ class Foo {})cpp";
327327
HI.Name = "X";
328328
HI.LocalScope = "X<T *>::"; // FIXME: X<T *, void>::
329329
HI.Kind = index::SymbolKind::Constructor;
330-
HI.ReturnType = "X<T *>";
331330
HI.Definition = "X()";
332331
HI.Parameters.emplace();
333332
}},
@@ -337,10 +336,18 @@ class Foo {})cpp";
337336
HI.Name = "~X";
338337
HI.LocalScope = "X::";
339338
HI.Kind = index::SymbolKind::Destructor;
340-
HI.ReturnType = "void";
341339
HI.Definition = "~X()";
342340
HI.Parameters.emplace();
343341
}},
342+
{"class X { operator [[in^t]](); };",
343+
[](HoverInfo &HI) {
344+
HI.NamespaceScope = "";
345+
HI.Name = "operator int";
346+
HI.LocalScope = "X::";
347+
HI.Kind = index::SymbolKind::ConversionFunction;
348+
HI.Definition = "operator int()";
349+
HI.Parameters.emplace();
350+
}},
344351

345352
// auto on lambda
346353
{R"cpp(

0 commit comments

Comments
 (0)