diff options
author | Greg Clayton <gclayton@apple.com> | 2014-01-23 21:38:34 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-01-23 21:38:34 +0000 |
commit | 1f4db7da8fa4e3c8e0b7ac9807abc7905675c61f (patch) | |
tree | f653e8e793a10b715e4755ff491e2c434f553358 /lldb/scripts/Python/interface/SBModule.i | |
parent | b1ce33379a847a0b5257a03560d96a4158f1edf8 (diff) | |
download | bcm5719-llvm-1f4db7da8fa4e3c8e0b7ac9807abc7905675c61f.tar.gz bcm5719-llvm-1f4db7da8fa4e3c8e0b7ac9807abc7905675c61f.zip |
Added the ability to get the type that a typedef points to via:
SBType SBType::GetTypedefedType();
Also added the ability to get a type by type ID from a SBModule:
SBType SBModule::GetTypeByID (lldb::user_id_t uid);
llvm-svn: 199939
Diffstat (limited to 'lldb/scripts/Python/interface/SBModule.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBModule.i | 3 |
1 files changed, 3 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", " |