This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from fe2ebf85f [lldb-mi] Clean up and update a few MI commands. new 56cfe695b Refactoring for for the internal command line completion API (NFC)
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/Interpreter/CommandAlias.h | 16 +- include/lldb/Interpreter/CommandInterpreter.h | 11 +- include/lldb/Interpreter/CommandObject.h | 87 ++------ include/lldb/Interpreter/CommandObjectMultiword.h | 21 +- .../lldb/Interpreter/CommandObjectRegexCommand.h | 5 +- include/lldb/Utility/CompletionRequest.h | 94 ++++++++ source/Commands/CommandObjectCommands.cpp | 45 ++-- source/Commands/CommandObjectFrame.cpp | 22 +- source/Commands/CommandObjectHelp.cpp | 28 +-- source/Commands/CommandObjectHelp.h | 5 +- source/Commands/CommandObjectMultiword.cpp | 59 ++--- source/Commands/CommandObjectPlatform.cpp | 19 +- source/Commands/CommandObjectPlugin.cpp | 22 +- source/Commands/CommandObjectProcess.cpp | 25 +-- source/Commands/CommandObjectSettings.cpp | 239 +++++++++++---------- source/Commands/CommandObjectTarget.cpp | 117 +++++----- source/Interpreter/CommandAlias.cpp | 17 +- source/Interpreter/CommandInterpreter.cpp | 67 +++--- source/Interpreter/CommandObject.cpp | 26 ++- source/Interpreter/CommandObjectRegexCommand.cpp | 24 +-- source/Utility/CMakeLists.txt | 1 + source/Utility/CompletionRequest.cpp | 26 +++ unittests/Utility/CMakeLists.txt | 1 + unittests/Utility/CompletionRequestTest.cpp | 38 ++++ 24 files changed, 536 insertions(+), 479 deletions(-) create mode 100644 include/lldb/Utility/CompletionRequest.h create mode 100644 source/Utility/CompletionRequest.cpp create mode 100644 unittests/Utility/CompletionRequestTest.cpp