brintos

brintos / llvm-project-archived public Read only

0
0
Text · 279 B · 31bcfcb Raw
12 lines · plain
1%extend lldb::SBAddressRange {2#ifdef SWIGPYTHON3    %pythoncode%{4      def __repr__(self):5        import lldb6        stream = lldb.SBStream()7        self.GetDescription(stream, lldb.target if lldb.target else lldb.SBTarget())8        return stream.GetData()9    %}10#endif11}12