Codebase list ohcount / c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main test / src_dir / objj.j
c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main

Tree @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main (Download .tar.gz)

objj.j @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/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