diff options
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBCommandInterpreter.i | 3 | ||||
-rw-r--r-- | lldb/scripts/Python/interface/SBCommandReturnObject.i | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBCommandInterpreter.i b/lldb/scripts/Python/interface/SBCommandInterpreter.i index 62aaf8c48aa..4cf3d22f5d0 100644 --- a/lldb/scripts/Python/interface/SBCommandInterpreter.i +++ b/lldb/scripts/Python/interface/SBCommandInterpreter.i @@ -101,6 +101,9 @@ public: lldb::SBProcess GetProcess (); + + lldb::SBDebugger + GetDebugger (); void SourceInitFileInHomeDirectory (lldb::SBCommandReturnObject &result); diff --git a/lldb/scripts/Python/interface/SBCommandReturnObject.i b/lldb/scripts/Python/interface/SBCommandReturnObject.i index aed02eac64b..82c07ee434d 100644 --- a/lldb/scripts/Python/interface/SBCommandReturnObject.i +++ b/lldb/scripts/Python/interface/SBCommandReturnObject.i @@ -65,6 +65,9 @@ public: void AppendMessage (const char *message); + void + AppendWarning (const char *message); + bool GetDescription (lldb::SBStream &description); |