xref: /llvm-project/lldb/bindings/interface/SBWatchpointExtensions.i (revision 6813ef37377e8d8fadf6efe01e1ed80cc53b9c86)
1 STRING_EXTENSION_LEVEL_OUTSIDE(SBWatchpoint, lldb::eDescriptionLevelVerbose)
2 
3 %extend lldb::SBWatchpoint {
4 #ifdef SWIGPYTHON
5     %pythoncode%{
6       # operator== is a free function, which swig does not handle, so we inject
7       # our own equality operator here
8       def __eq__(self, other):
9         return not self.__ne__(other)
10 
11       def __hex__(self):
12         return self.GetWatchAddress()
13 
14       def __len__(self):
15         return self.GetWatchSize()
16     %}
17 #endif
18 }
19