[Lldb-commits] [lldb] [LLDB][DWARF] Use the same qualified name computation for Rust (PR #165840)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 31 01:59:06 PDT 2025


================
@@ -316,6 +316,10 @@ bool Language::LanguageIsCPlusPlus(LanguageType language) {
   }
 }
 
+bool Language::LanguageIsRust(LanguageType language) {
+  return language == eLanguageTypeRust;
----------------
Michael137 wrote:

Maybe eventually we'd want something like a "PretendsToBeCxx" API, which is true for rust and couple other languages. But that's out of scope

https://github.com/llvm/llvm-project/pull/165840


More information about the lldb-commits mailing list