Skip to content

Commit

Permalink
[AST] Traverse the class type loc inside the member type loc.
Browse files Browse the repository at this point in the history
Summary:
We are missing this currently.

This would fix clangd/clangd#216.

Reviewers: ilya-biryukov

Subscribers: mgorny, kadircet, usaxena95, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D70849
  • Loading branch information
hokein committed Dec 5, 2019
1 parent 1462f5a commit 7f93cb6
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 4 deletions.
Expand Up @@ -407,8 +407,8 @@ TEST(SemanticHighlighting, GetsCorrectTokens) {
}
)cpp",
R"cpp(
template<typename $TemplateParameter[[T]],
void (T::*$TemplateParameter[[method]])(int)>
template<typename $TemplateParameter[[T]],
void ($TemplateParameter[[T]]::*$TemplateParameter[[method]])(int)>
struct $Class[[G]] {
void $Method[[foo]](
$TemplateParameter[[T]] *$Parameter[[O]]) {
Expand Down
5 changes: 3 additions & 2 deletions clang/include/clang/AST/RecursiveASTVisitor.h
Expand Up @@ -1162,11 +1162,12 @@ DEF_TRAVERSE_TYPELOC(LValueReferenceType,
DEF_TRAVERSE_TYPELOC(RValueReferenceType,
{ TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); })

// FIXME: location of base class?
// We traverse this in the type case as well, but how is it not reached through
// the pointee type?
DEF_TRAVERSE_TYPELOC(MemberPointerType, {
TRY_TO(TraverseType(QualType(TL.getTypePtr()->getClass(), 0)));
auto *TSI = TL.getClassTInfo();
assert(TSI);
TRY_TO(TraverseTypeLoc(TSI->getTypeLoc()));
TRY_TO(TraverseTypeLoc(TL.getPointeeLoc()));
})

Expand Down
1 change: 1 addition & 0 deletions clang/unittests/Tooling/CMakeLists.txt
Expand Up @@ -42,6 +42,7 @@ add_clang_unittest(ToolingTests
RecursiveASTVisitorTests/LambdaDefaultCapture.cpp
RecursiveASTVisitorTests/LambdaExpr.cpp
RecursiveASTVisitorTests/LambdaTemplateParams.cpp
RecursiveASTVisitorTests/MemberPointerTypeLoc.cpp
RecursiveASTVisitorTests/NestedNameSpecifiers.cpp
RecursiveASTVisitorTests/ParenExpr.cpp
RecursiveASTVisitorTests/TemplateArgumentLocTraverser.cpp
Expand Down
@@ -0,0 +1,47 @@
//===- unittest/Tooling/RecursiveASTVisitorTests/MemberPointerTypeLoc.cpp -===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "TestVisitor.h"

using namespace clang;

namespace {

class MemberPointerTypeLocVisitor
: public ExpectedLocationVisitor<MemberPointerTypeLocVisitor> {
public:
bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
if (!TL)
return true;
Match(TL.getDecl()->getName(), TL.getNameLoc());
return true;
}
bool VisitRecordTypeLoc(RecordTypeLoc RTL) {
if (!RTL)
return true;
Match(RTL.getDecl()->getName(), RTL.getNameLoc());
return true;
}
};

TEST(RecursiveASTVisitor, VisitTypeLocInMemberPointerTypeLoc) {
MemberPointerTypeLocVisitor Visitor;
Visitor.ExpectMatch("Bar", 4, 36);
Visitor.ExpectMatch("T", 7, 23);
EXPECT_TRUE(Visitor.runOver(R"cpp(
class Bar { void func(int); };
class Foo {
void bind(const char*, void(Bar::*Foo)(int)) {}
template<typename T>
void test(void(T::*Foo)());
};
)cpp"));
}

} // end anonymous namespace

0 comments on commit 7f93cb6

Please sign in to comment.