Fix the rare case where an ObjC class has ivars but no methods. The fix is to not early return when a class has no method list.
5 lines
60 B
Objective-C
5 lines
60 B
Objective-C
#import <objc/NSObject.h>
|
|
|
|
@interface Point : NSObject
|
|
@end
|