[Lldb-commits] [lldb] [lldb] Display breakpoint locations using display name (PR #90297)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 26 16:59:53 PDT 2024
jimingham wrote:
This is just a suggestion, but would it make sense to interpret "GetDisplayName" to mean "get the name the user wants me to display", which is usually the language's display name (if it has one) but if there's no language display name or the caller has set the "get the full name" setting return GetName. The advantage of that interpretation is that anywhere you wanted to show the user a demangled name, you could JUST call GetDisplayName, rather than having to do "if (GetDisplayName) else GetName" in client code.
https://github.com/llvm/llvm-project/pull/90297
More information about the lldb-commits
mailing list