Skip to content

Commit 542615a

Browse files
committed
Add comments the new setting
1 parent f300e4f commit 542615a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lldb/include/lldb/Interpreter/CommandInterpreter.h

+5
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,8 @@ class CommandInterpreter : public Broadcaster,
770770
typedef llvm::StringMap<uint64_t> CommandUsageMap;
771771
CommandUsageMap m_command_usages;
772772

773+
/// Turn on settings `interpreter.save-transcript` for LLDB to populate
774+
/// this stream. Otherwise this stream is empty.
773775
StreamString m_transcript_stream;
774776

775777
/// Contains a list of handled commands and their details. Each element in
@@ -778,6 +780,9 @@ class CommandInterpreter : public Broadcaster,
778780
/// - "output" (string): The output of the command. Empty ("") if no output.
779781
/// - "error" (string): The error of the command. Empty ("") if no error.
780782
/// - "seconds" (float): The time it took to execute the command.
783+
///
784+
/// Turn on settings `interpreter.save-transcript` for LLDB to populate
785+
/// this list. Otherwise this list is empty.
781786
StructuredData::Array m_transcript;
782787
};
783788

0 commit comments

Comments
 (0)