Jozef Matus
08/03/2022, 10:04 AMkonan_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 🙂Matthew Murray
08/04/2022, 8:54 PM(lldb) expression -- (int32_t)Konan_DebugPrint(a_variable)
a_variable
with the name of the kotlin variable you want printedJozef Matus
08/16/2022, 7:30 AM