================
@@ -571,6 +571,17 @@ SBStructuredData SBCommandInterpreter::GetStatistics() {
return data;
}
+SBStructuredData SBCommandInterpreter::GetTranscript() {
+ LLDB_INSTRUMENT_VA(this);
+
+ SBStructuredData data;
+ if (!IsValid())
+ return data;
+
+ data.m_impl_up->SetObjectSP(m_opaque_ptr->GetTranscript());
+ return data;
----------------
medismailben wrote:
```suggestion
if (IsValid())
data.m_impl_up->SetObjectSP(m_opaque_ptr->GetTranscript());
return data;
```
https://github.com/llvm/llvm-project/pull/90703
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits