[lldb/CommandInterpreter] Remove flag that's always true (NFC)
authorJonas Devlieghere <jonas@devlieghere.com>
Wed, 15 Jan 2020 06:27:00 +0000 (22:27 -0800)
committerJonas Devlieghere <jonas@devlieghere.com>
Wed, 15 Jan 2020 06:28:49 +0000 (22:28 -0800)
commita6faf851f49c7d50e92b16ff9d2e7c02790dd0f8
treea7ca6edf62dd994474e7607dd7d90d23b39aad28
parentc42116cc653ae1618cc49dab367d9f6addd8cfd9
[lldb/CommandInterpreter] Remove flag that's always true (NFC)

The 'asynchronously' argument to both GetLLDBCommandsFromIOHandler and
GetPythonCommandsFromIOHandler is true for all call sites. This commit
simplifies the API by dropping it and giving the baton a default
argument.
lldb/include/lldb/Interpreter/CommandInterpreter.h
lldb/source/Commands/CommandObjectBreakpointCommand.cpp
lldb/source/Commands/CommandObjectCommands.cpp
lldb/source/Commands/CommandObjectTarget.cpp
lldb/source/Commands/CommandObjectType.cpp
lldb/source/Commands/CommandObjectWatchpointCommand.cpp
lldb/source/Interpreter/CommandInterpreter.cpp
lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp