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.
8 lines
74 B
Objective-C
8 lines
74 B
Objective-C
#import "Point.h"
|
|
|
|
@implementation Point {
|
|
float _x;
|
|
float _y;
|
|
}
|
|
@end
|