[Lldb-commits] [lldb] Add new Python API `SBCommandInterpreter::GetTranscript()` (PR #90703)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Thu May 2 11:26:29 PDT 2024


================
@@ -766,6 +768,12 @@ class CommandInterpreter : public Broadcaster,
   CommandUsageMap m_command_usages;
 
   StreamString m_transcript_stream;
+
+  /// Contains a list of handled commands, output and error. Each element in
+  /// the list is a dictionary with three keys: "command" (string), "output"
+  /// (list of strings) and optionally "error" (list of strings). Each string
+  /// in "output" and "error" is a line (without EOL characters).
+  StructuredData::ArraySP m_transcript_structured;
----------------
bulbazord wrote:

nit: No need to put `structured` in the variable name.

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


More information about the lldb-commits mailing list