Codebase list ohcount / a828f03c-a62e-49d7-b2ec-6e6df59903d2/main test / src_dir / objj.j
a828f03c-a62e-49d7-b2ec-6e6df59903d2/main

Tree @a828f03c-a62e-49d7-b2ec-6e6df59903d2/main (Download .tar.gz)

objj.j @a828f03c-a62e-49d7-b2ec-6e6df59903d2/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