36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#define PRE_IVAR ((struct pre_ivar*)((char*)self - PRE_IVAR_ALIGN))
static struct {
Class isa;
} alloc_failed_exception;
@implementation OFObject
#ifndef __objc_INCLUDE_GNU
+ load
{
return self;
}
#endif
+ initialize
{
return self;
}
+ alloc
{
|
<
<
<
<
<
<
<
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#define PRE_IVAR ((struct pre_ivar*)((char*)self - PRE_IVAR_ALIGN))
static struct {
Class isa;
} alloc_failed_exception;
@implementation OFObject
+ initialize
{
return self;
}
+ alloc
{
|