[PATCH] D66869: [clangd] Fix SelectionTree to allow selection range expression in foreach loops.
Sam McCall via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 28 03:40:44 PDT 2019
sammccall created this revision.
sammccall added a reviewer: hokein.
Herald added subscribers: cfe-commits, kadircet, arphaman, jkorous, MaskRay, ilya-biryukov.
Herald added a project: clang.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D66869
Files:
clang-tools-extra/clangd/Selection.cpp
clang-tools-extra/clangd/unittests/SelectionTests.cpp
Index: clang-tools-extra/clangd/unittests/SelectionTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/SelectionTests.cpp
+++ clang-tools-extra/clangd/unittests/SelectionTests.cpp
@@ -261,6 +261,22 @@
struct Foo<U<int>*> {};
)cpp",
"TemplateTemplateParmDecl"},
+
+ // Foreach has a weird AST, ensure we can select parts of the range init.
+ // This used to fail, because the DeclStmt for C claimed the whole range.
+ {
+ R"cpp(
+ struct Str {
+ const char *begin();
+ const char *end();
+ };
+ Str makeStr(const char*);
+ void loop() {
+ for (const char* C : [[mak^eStr("f^oo")]])
+ ;
+ }
+ )cpp",
+ "CallExpr"},
};
for (const Case &C : Cases) {
Annotations Test(C.Code);
Index: clang-tools-extra/clangd/Selection.cpp
===================================================================
--- clang-tools-extra/clangd/Selection.cpp
+++ clang-tools-extra/clangd/Selection.cpp
@@ -228,6 +228,16 @@
bool TraverseNestedNameSpecifier(NestedNameSpecifier *) { return true; }
bool TraverseType(QualType) { return true; }
+ // The DeclStmt for the loop variable claims to cover the whole range
+ // inside the parens, this causes the range-init expression to not be hit.
+ // Traverse the loop VarDecl instead, which has the right source range.
+ bool TraverseCXXForRangeStmt(CXXForRangeStmt *S) {
+ return traverseNode(S, [&] {
+ return TraverseStmt(S->getInit()) && TraverseDecl(S->getLoopVariable()) &&
+ TraverseStmt(S->getRangeInit()) && TraverseStmt(S->getBody());
+ });
+ }
+
private:
using Base = RecursiveASTVisitor<SelectionVisitor>;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66869.217598.patch
Type: text/x-patch
Size: 1838 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190828/48dc6105/attachment-0001.bin>
More information about the cfe-commits
mailing list