1include "../../include/lldb/Core/PropertiesBase.td"
2
3let Definition = "interpreter" in {
4  def ExpandRegexAliases: Property<"expand-regex-aliases", "Boolean">,
5    Global,
6    DefaultFalse,
7    Desc<"If true, regular expression alias commands will show the expanded command that will be executed. This can be used to debug new regular expression alias commands.">;
8  def PromptOnQuit: Property<"prompt-on-quit", "Boolean">,
9    Global,
10    DefaultTrue,
11    Desc<"If true, LLDB will prompt you before quitting if there are any live processes being debugged. If false, LLDB will quit without asking in any case.">;
12  def SaveSessionOnQuit: Property<"save-session-on-quit", "Boolean">,
13    Global,
14    DefaultFalse,
15    Desc<"If true, LLDB will save the session's transcripts before quitting.">;
16  def SaveSessionDirectory: Property<"save-session-directory", "FileSpec">,
17    DefaultStringValue<"">,
18    Desc<"A path where LLDB will save the session's transcripts. This is particularly useful when you can't set the session file, for example when using `save-session-on-quit`.">;
19  def StopCmdSourceOnError: Property<"stop-command-source-on-error", "Boolean">,
20    Global,
21    DefaultTrue,
22    Desc<"If true, LLDB will stop running a 'command source' script upon encountering an error.">;
23  def SpaceReplPrompts: Property<"space-repl-prompts", "Boolean">,
24    Global,
25    DefaultFalse,
26    Desc<"If true, blank lines will be printed between between REPL submissions.">;
27  def EchoCommands: Property<"echo-commands", "Boolean">,
28    Global,
29    DefaultTrue,
30    Desc<"If true, commands will be echoed before they are evaluated.">;
31  def EchoCommentCommands: Property<"echo-comment-commands", "Boolean">,
32    Global,
33    DefaultTrue,
34    Desc<"If true, commands will be echoed even if they are pure comment lines.">;
35  def RepeatPreviousCommand: Property<"repeat-previous-command", "Boolean">,
36    Global,
37    DefaultTrue,
38    Desc<"If true, LLDB will repeat the previous command if no command was passed to the interpreter. If false, LLDB won't repeat the previous command but only return a new prompt.">;
39  def RequireCommandOverwrite: Property<"require-overwrite", "Boolean">,
40    Global,
41    DefaultTrue,
42    Desc<"If true, require --overwrite in 'command script add' before overwriting existing user commands.">;
43}
44