Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Interpreter / InterpreterProperties.td
blob2155ee61ccffbb9c5d6406e2d7e13541b134e0a3
1 include "../../include/lldb/Core/PropertiesBase.td"
3 let 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 OpenTranscriptInEditor: Property<"open-transcript-in-editor", "Boolean">,
17     Global,
18     DefaultTrue,
19     Desc<"If true, LLDB will open the saved session's transcripts in the external editor.">;
20   def SaveSessionDirectory: Property<"save-session-directory", "FileSpec">,
21     DefaultStringValue<"">,
22     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`.">;
23   def StopCmdSourceOnError: Property<"stop-command-source-on-error", "Boolean">,
24     Global,
25     DefaultTrue,
26     Desc<"If true, LLDB will stop running a 'command source' script upon encountering an error.">;
27   def SpaceReplPrompts: Property<"space-repl-prompts", "Boolean">,
28     Global,
29     DefaultFalse,
30     Desc<"If true, blank lines will be printed between between REPL submissions.">;
31   def EchoCommands: Property<"echo-commands", "Boolean">,
32     Global,
33     DefaultTrue,
34     Desc<"If true, commands will be echoed before they are evaluated.">;
35   def EchoCommentCommands: Property<"echo-comment-commands", "Boolean">,
36     Global,
37     DefaultTrue,
38     Desc<"If true, commands will be echoed even if they are pure comment lines.">;
39   def RepeatPreviousCommand: Property<"repeat-previous-command", "Boolean">,
40     Global,
41     DefaultTrue,
42     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.">;
43   def RequireCommandOverwrite: Property<"require-overwrite", "Boolean">,
44     Global,
45     DefaultTrue,
46     Desc<"If true, require --overwrite in 'command script add' before overwriting existing user commands.">;