Codebase list ohcount / upstream/3.1.1 test / src_dir / objj.j
upstream/3.1.1

Tree @upstream/3.1.1 (Download .tar.gz)

objj.j @upstream/3.1.1raw · 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