106c3fb27SDimitry Andric STRING_EXTENSION_LEVEL_OUTSIDE(SBBreakpointLocation, lldb::eDescriptionLevelFull) 2*5f757f3fSDimitry Andric 3*5f757f3fSDimitry Andric %extend lldb::SBBreakpointLocation { 4*5f757f3fSDimitry Andric #ifdef SWIGPYTHON 5*5f757f3fSDimitry Andric %pythoncode%{ 6*5f757f3fSDimitry Andric # operator== is a free function, which swig does not handle, so we inject 7*5f757f3fSDimitry Andric # our own equality operator here 8*5f757f3fSDimitry Andric def __eq__(self, other): 9*5f757f3fSDimitry Andric return not self.__ne__(other) 10*5f757f3fSDimitry Andric %} 11*5f757f3fSDimitry Andric #endif 12*5f757f3fSDimitry Andric } 13