aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandObject.cpp
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2020-04-02 00:12:01 -0400
committerEd Maste <emaste@FreeBSD.org>2020-04-02 09:43:01 -0400
commit55e32e92cda79a9eb4487ea8e4ec1b968fac5145 (patch)
tree1056ee0681a2b7bfe3180045965ae4358898fa71 /lldb/source/Interpreter/CommandObject.cpp
parentbcaa01752f5e45b9d1647aef16d74c748192f8a5 (diff)
downloadllvm-55e32e92cda79a9eb4487ea8e4ec1b968fac5145.zip
llvm-55e32e92cda79a9eb4487ea8e4ec1b968fac5145.tar.gz
llvm-55e32e92cda79a9eb4487ea8e4ec1b968fac5145.tar.bz2
[lldb] update eArgTypeScriptLang description to mention lua
--script-language python and --script-language lua are both valid now. Reviewed by: JDevlieghere Differential Revision: https://reviews.llvm.org/D77241
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r--lldb/source/Interpreter/CommandObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp
index 01fa86750..f1f17db 100644
--- a/lldb/source/Interpreter/CommandObject.cpp
+++ b/lldb/source/Interpreter/CommandObject.cpp
@@ -1091,7 +1091,7 @@ CommandObject::ArgumentTableEntry CommandObject::g_arguments_data[] = {
{ eArgTypeRunArgs, "run-args", CommandCompletions::eNoCompletion, { nullptr, false }, "Arguments to be passed to the target program when it starts executing." },
{ eArgTypeRunMode, "run-mode", CommandCompletions::eNoCompletion, { nullptr, false }, "Help text goes here." },
{ eArgTypeScriptedCommandSynchronicity, "script-cmd-synchronicity", CommandCompletions::eNoCompletion, { nullptr, false }, "The synchronicity to use to run scripted commands with regard to LLDB event system." },
- { eArgTypeScriptLang, "script-language", CommandCompletions::eNoCompletion, { nullptr, false }, "The scripting language to be used for script-based commands. Currently only Python is valid." },
+ { eArgTypeScriptLang, "script-language", CommandCompletions::eNoCompletion, { nullptr, false }, "The scripting language to be used for script-based commands. Supported languages are python and lua." },
{ eArgTypeSearchWord, "search-word", CommandCompletions::eNoCompletion, { nullptr, false }, "Any word of interest for search purposes." },
{ eArgTypeSelector, "selector", CommandCompletions::eNoCompletion, { nullptr, false }, "An Objective-C selector name." },
{ eArgTypeSettingIndex, "setting-index", CommandCompletions::eNoCompletion, { nullptr, false }, "An index into a settings variable that is an array (try 'settings list' to see all the possible settings variables and their types)." },