summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/CommandObjectScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Interpreter/CommandObjectScript.h')
-rw-r--r--lldb/source/Interpreter/CommandObjectScript.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/lldb/source/Interpreter/CommandObjectScript.h b/lldb/source/Interpreter/CommandObjectScript.h
index d74f7b156fd..eacd3a6b3ea 100644
--- a/lldb/source/Interpreter/CommandObjectScript.h
+++ b/lldb/source/Interpreter/CommandObjectScript.h
@@ -26,7 +26,8 @@ class CommandObjectScript : public CommandObject
{
public:
- CommandObjectScript (lldb::ScriptLanguage script_lang);
+ CommandObjectScript (CommandInterpreter &interpreter,
+ lldb::ScriptLanguage script_lang);
virtual
~CommandObjectScript ();
@@ -34,17 +35,15 @@ public:
bool WantsRawCommandString();
virtual bool
- ExecuteRawCommandString (CommandInterpreter &interpreter,
- const char *command,
+ ExecuteRawCommandString (const char *command,
CommandReturnObject &result);
virtual bool
- Execute (CommandInterpreter &interpreter,
- Args& command,
+ Execute (Args& command,
CommandReturnObject &result);
ScriptInterpreter *
- GetInterpreter (CommandInterpreter &interpreter);
+ GetInterpreter ();
private:
lldb::ScriptLanguage m_script_lang;
OpenPOWER on IntegriCloud