diff options
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBModule.i | 3 | ||||
-rw-r--r-- | lldb/scripts/Python/interface/SBType.i | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBModule.i b/lldb/scripts/Python/interface/SBModule.i index 21f9dcc4055..387a2741e02 100644 --- a/lldb/scripts/Python/interface/SBModule.i +++ b/lldb/scripts/Python/interface/SBModule.i @@ -231,6 +231,9 @@ public: FindTypes (const char* type); lldb::SBType + GetTypeByID (lldb::user_id_t uid); + + lldb::SBType GetBasicType(lldb::BasicType type); %feature("docstring", " diff --git a/lldb/scripts/Python/interface/SBType.i b/lldb/scripts/Python/interface/SBType.i index fbeed3efd66..936bf2ccf27 100644 --- a/lldb/scripts/Python/interface/SBType.i +++ b/lldb/scripts/Python/interface/SBType.i @@ -178,6 +178,9 @@ public: GetReferenceType(); lldb::SBType + SBType::GetTypedefedType(); + + lldb::SBType GetDereferencedType(); lldb::SBType |