1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|* *|
|* Property definitions for LLDB. *|
|* *|
|* Automatically generated file, do not edit! *|
|* *|
\*===----------------------------------------------------------------------===*/
// Property definitions for interpreter
#ifdef LLDB_PROPERTIES_interpreter
static constexpr PropertyDefinition g_interpreter_properties[] = {
{"echo-commands", OptionValue::eTypeBoolean, true, 1, nullptr, {}, "If true, commands will be echoed before they are evaluated."},
{"echo-comment-commands", OptionValue::eTypeBoolean, true, 1, nullptr, {}, "If true, commands will be echoed even if they are pure comment lines."},
{"expand-regex-aliases", OptionValue::eTypeBoolean, true, 0, nullptr, {}, "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."},
{"prompt-on-quit", OptionValue::eTypeBoolean, true, 1, nullptr, {}, "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."},
{"space-repl-prompts", OptionValue::eTypeBoolean, true, 0, nullptr, {}, "If true, blank lines will be printed between between REPL submissions."},
{"stop-command-source-on-error", OptionValue::eTypeBoolean, true, 1, nullptr, {}, "If true, LLDB will stop running a 'command source' script upon encountering an error."},
};
#undef LLDB_PROPERTIES_interpreter
#endif // interpreter Property
|