Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / bindings / interface / SBTypeFormatExtensions.i
blobcde1d72a1ffcb41f869fbeb4a11a94defb11f1f6
1 STRING_EXTENSION_LEVEL_OUTSIDE(SBTypeFormat, lldb::eDescriptionLevelBrief)
2 %extend lldb::SBTypeFormat {
3 #ifdef SWIGPYTHON
4 %pythoncode %{
5 # operator== is a free function, which swig does not handle, so we inject
6 # our own equality operator here
7 def __eq__(self, other):
8 return not self.__ne__(other)
10 format = property(GetFormat, SetFormat)
11 options = property(GetOptions, SetOptions)
13 #endif