Hi all 🙂, I’m debugging my app in lldb, I would like to inspect variable which happens to be Map<String, String>. How would you do it? I loaded
konan_lldb.py
which helps interpretting non-basic structure and tells you little bit more then just
ObjHeader *
. But still, output of
v
command in lldb is this
(ObjHeader *) context = [keysArray: ..., valuesArray: ..., presenceArray: ..., hashArray: ..., keysView: ..., valuesView: ..., entriesView: ..., maxProbeDistance: ..., length: ..., hashShift: ..., _size: ..., isReadOnly: ...]
I would like to be able to print keys/values and I cant find the way to do that. Do anybody know how to do that?
Thank you a lot 🙂