[PATCH] D92186: [clangd] AddUsing: do not crash on non-namespace using decls.
Adam Czachorowski via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 26 11:09:18 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9d87739f664b: [clangd] AddUsing: do not crash on non-namespace using decls. (authored by adamcz).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D92186/new/
https://reviews.llvm.org/D92186
Files:
clang-tools-extra/clangd/refactor/tweaks/AddUsing.cpp
clang-tools-extra/clangd/unittests/TweakTests.cpp
Index: clang-tools-extra/clangd/unittests/TweakTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/TweakTests.cpp
+++ clang-tools-extra/clangd/unittests/TweakTests.cpp
@@ -2884,6 +2884,17 @@
void fun() {
yy();
}
+)cpp"},
+ // Existing using with non-namespace part.
+ {R"cpp(
+#include "test.hpp"
+using one::two::ee::ee_one;
+one::t^wo::cc c;
+)cpp",
+ R"cpp(
+#include "test.hpp"
+using one::two::cc;using one::two::ee::ee_one;
+cc c;
)cpp"}};
llvm::StringMap<std::string> EditedFiles;
for (const auto &Case : Cases) {
@@ -2892,7 +2903,7 @@
namespace one {
void oo() {}
namespace two {
-enum ee {};
+enum ee {ee_one};
void ff() {}
class cc {
public:
Index: clang-tools-extra/clangd/refactor/tweaks/AddUsing.cpp
===================================================================
--- clang-tools-extra/clangd/refactor/tweaks/AddUsing.cpp
+++ clang-tools-extra/clangd/refactor/tweaks/AddUsing.cpp
@@ -152,12 +152,14 @@
if (SM.isBeforeInTranslationUnit(Inputs.Cursor, U->getUsingLoc()))
// "Usings" is sorted, so we're done.
break;
- if (U->getQualifier()->getAsNamespace()->getCanonicalDecl() ==
- QualifierToRemove.getNestedNameSpecifier()
- ->getAsNamespace()
- ->getCanonicalDecl() &&
- U->getName() == Name) {
- return InsertionPointData();
+ if (const auto *Namespace = U->getQualifier()->getAsNamespace()) {
+ if (Namespace->getCanonicalDecl() ==
+ QualifierToRemove.getNestedNameSpecifier()
+ ->getAsNamespace()
+ ->getCanonicalDecl() &&
+ U->getName() == Name) {
+ return InsertionPointData();
+ }
}
// Insertion point will be before last UsingDecl that affects cursor
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D92186.307907.patch
Type: text/x-patch
Size: 1857 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20201126/ad418ddc/attachment.bin>
More information about the cfe-commits
mailing list