Codebase list ohcount / fresh-snapshots/upstream test / src_dir / objj.j
fresh-snapshots/upstream

Tree @fresh-snapshots/upstream (Download .tar.gz)

objj.j @fresh-snapshots/upstreamraw · 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