brintos

brintos / llvm-project-archived public Read only

0
0
Text · 568 B · 93cefd2 Raw
11 lines · plain
1%extend lldb::SBExecutionContext {2#ifdef SWIGPYTHON3    %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#endif10}11