@lolgrep
In paragraph “Exploring properties through SBValue offsets” right from the beginning the things goes wrong.
(lldb) script print a.GetNumChildren()
gives 3 instead of 4.
(lldb) script print a.GetChildAtIndex(0)
gives
(UICachedDeviceRGBColor *) _eyeColor = 0x0000608000070e00
instead of
(NSObject) NSObject = {
isa = DSObjectiveCObject
}
but in the same time
script a.deref.size
gives same 32.
So what was happened with the SBValue? And how do i get isa property in this case?