[PATCH] D95852: [clangd] Report xref for base methods.
Utkarsh Saxena via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 2 00:06:23 PST 2021
usaxena95 created this revision.
Herald added subscribers: kadircet, arphaman.
usaxena95 requested review of this revision.
Herald added subscribers: cfe-commits, MaskRay, ilya-biryukov.
Herald added a project: clang.
See: https://github.com/clangd/clangd/issues/668
struct A { virtual void foo() = 0; };
struct B : A { void foo() override; };
Find refs on `B::foo()` will show:
- decls of `A::foo()` (new)
- decls of `B::foo()`
- refs to `A::foo()` (new)
- refs to `B::foo()`.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D95852
Files:
clang-tools-extra/clangd/XRefs.cpp
clang-tools-extra/clangd/unittests/XRefsTests.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D95852.320695.patch
Type: text/x-patch
Size: 3673 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210202/443c8d96/attachment.bin>
More information about the cfe-commits
mailing list