1*06c3fb27SDimitry Andric %extend lldb::SBScriptObject { 2*06c3fb27SDimitry Andric #ifdef SWIGPYTHON 3*06c3fb27SDimitry Andric %pythoncode %{ 4*06c3fb27SDimitry Andric ptr = property(GetPointer, None, doc='''A read only property that returns the underlying script object.''') 5*06c3fb27SDimitry Andric lang = property(GetLanguage, None, doc='''A read only property that returns the script language associated with with this script object.''') 6*06c3fb27SDimitry Andric %} 7*06c3fb27SDimitry Andric #endif 8*06c3fb27SDimitry Andric } 9