Hi all.
In modern Objective-C, I can have my ivars declared in the implementation file
instead of the header. See example below. Unfortunately, LLDB-69 is not able to
see such ivars. They are missing from the list I get with "expr *self". So
here is a feature request ;-)
// .h
@interface MyClass : NSObject
@end
// .m
@interface MyClass ()
{
@private
int myIvar;
}
@end
or
@implementation MyClass
{
@private
int myIvar
}
...
@end
Thanks.
Berk Özer
_______________________________________________
lldb-dev mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev