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 StopCmdSourceOnError: Property<"stop-command-source-on-error", "Boolean">, 13 Global, 14 DefaultTrue, 15 Desc<"If true, LLDB will stop running a 'command source' script upon encountering an error.">; 16 def SpaceReplPrompts: Property<"space-repl-prompts", "Boolean">, 17 Global, 18 DefaultFalse, 19 Desc<"If true, blank lines will be printed between between REPL submissions.">; 20 def EchoCommands: Property<"echo-commands", "Boolean">, 21 Global, 22 DefaultTrue, 23 Desc<"If true, commands will be echoed before they are evaluated.">; 24 def EchoCommentCommands: Property<"echo-comment-commands", "Boolean">, 25 Global, 26 DefaultTrue, 27 Desc<"If true, commands will be echoed even if they are pure comment lines.">; 28} 29