xref: /freebsd-src/contrib/llvm-project/lldb/bindings/interface/SBScriptObjectExtensions.i (revision fc55c20355d889bf3d3f81d94b3614a0c4253fa0)
1 %extend lldb::SBScriptObject {
2 #ifdef SWIGPYTHON
3     %pythoncode %{
4         ptr = property(GetPointer, None, doc='''A read only property that returns the underlying script object.''')
5         lang = property(GetLanguage, None, doc='''A read only property that returns the script language associated with with this script object.''')
6     %}
7 #endif
8 }
9