[Lldb-commits] [lldb] [lldb][[DWARFDeclContext] Add function to extract qualified names as vector (PR #77349)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 9 10:55:26 PST 2024
================
@@ -68,6 +68,11 @@ class DWARFDeclContext {
const char *GetQualifiedName() const;
+ /// Returns a vector of string, one string per entry in the fully qualified
+ /// name. For example, for the DeclContext `A::B::C`, this methods returns
+ /// `{"C", "B", "A"}`
+ llvm::SmallVector<llvm::StringRef> GetQualifiedNameAsVector() const;
----------------
adrian-prantl wrote:
WFM
https://github.com/llvm/llvm-project/pull/77349
More information about the lldb-commits
mailing list