[clang-tools-extra] clangd: Make callHierarchy follow inheritance (PR #163024)
Nathan Ridge via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 16 23:49:30 PDT 2025
================
@@ -379,6 +379,27 @@ void Dex::relations(
}
}
+void Dex::reverseRelations(
+ const RelationsRequest &Req,
+ llvm::function_ref<void(const SymbolID &, const Symbol &)> Callback) const {
+ assert(Req.Predicate == RelationKind::OverriddenBy);
----------------
HighCommander4 wrote:
Please add a `trace::Span` declaration similar to the one in `relations()`
https://github.com/llvm/llvm-project/pull/163024
More information about the cfe-commits
mailing list