Codebase list ohcount / fc0f4e2e-584f-4c68-9809-ad96640f54f0/main test / src_dir / objj.j
fc0f4e2e-584f-4c68-9809-ad96640f54f0/main

Tree @fc0f4e2e-584f-4c68-9809-ad96640f54f0/main (Download .tar.gz)

objj.j @fc0f4e2e-584f-4c68-9809-ad96640f54f0/mainraw · history · blame

@import <Foundation/Foundation.j>
@import <AppKit/AppKit.j>

@import "Superclass.j"

/*
    I'm commenting this class 
*/
@implementation Class : Superclass
{
    var x @accessors;
}

+ (void)classMethod
{
    return self; // this is a comment
}

- (void)instanceMethod
{
    return self;
}

@end