[clang] constexpr built-in elementwise bitreverse function. (#118177)
[llvm-project.git] / lldb / bindings / interface / SBScriptObjectExtensions.i
blob507c11a91d3403d12eee43817e03121a164c72c1
1 %extend lldb::SBScriptObject {
2 #ifdef SWIGPYTHON
3 %pythoncode %{
4 # operator== is a free function, which swig does not handle, so we inject
5 # our own equality operator here
6 def __eq__(self, other):
7 return not self.__ne__(other)
9 ptr = property(GetPointer, None, doc='''A read only property that returns the underlying script object.''')
10 lang = property(GetLanguage, None, doc='''A read only property that returns the script language associated with with this script object.''')
12 #endif