xref: /freebsd/contrib/llvm-project/lldb/bindings/interface/SBExecutionContextExtensions.i (revision 656f7f43f204ad1e6956f8257f66b50e032a6c61)
1 %extend lldb::SBExecutionContext {
2 #ifdef SWIGPYTHON
3     %pythoncode %{
4         target = property(GetTarget, None, doc='''A read only property that returns the same result as GetTarget().''')
5         process = property(GetProcess, None, doc='''A read only property that returns the same result as GetProcess().''')
6         thread = property(GetThread, None, doc='''A read only property that returns the same result as GetThread().''')
7         frame = property(GetFrame, None, doc='''A read only property that returns the same result as GetFrame().''')
8     %}
9 #endif
10 }
11