LLDB support: handle unsorted enum member lists
* etc/emacs_lldb.py (enumerator_name): Handle the case that enum member list is not sorted by value.
This commit is contained in:
parent
a5e36575ae
commit
a680a9fc64
1 changed files with 4 additions and 2 deletions
|
@ -33,7 +33,10 @@
|
|||
# Return the name of enumerator ENUM as a string.
|
||||
def enumerator_name(enum):
|
||||
enumerators = enum.GetType().GetEnumMembers()
|
||||
return enumerators[enum.GetValueAsUnsigned()].GetName()
|
||||
for enum_member in enumerators:
|
||||
if enum.GetValueAsUnsigned() == enum_member.GetValueAsUnsigned():
|
||||
return enum_member.GetName()
|
||||
return None
|
||||
|
||||
# A class wrapping an SBValue for a Lisp_Object, providing convenience
|
||||
# functions.
|
||||
|
@ -91,7 +94,6 @@ def init_unsigned(self):
|
|||
self.unsigned = lisp_word.GetValueAsUnsigned()
|
||||
else:
|
||||
self.unsigned = self.lisp_obj.GetValueAsUnsigned()
|
||||
pass
|
||||
|
||||
# Initialize self.lisp_type to the C Lisp_Type enumerator of the
|
||||
# Lisp_Object, as a string. Initialize self.pvec_type likewise to
|
||||
|
|
Loading…
Add table
Reference in a new issue