Codebase list ohcount / 71f18fd0-2918-4673-9432-32d77816000d/main test / src_dir / objj.j
71f18fd0-2918-4673-9432-32d77816000d/main

Tree @71f18fd0-2918-4673-9432-32d77816000d/main (Download .tar.gz)

objj.j @71f18fd0-2918-4673-9432-32d77816000d/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