Codebase list ohcount / 4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main test / expected_dir / objj.j
4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main

Tree @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main (Download .tar.gz)

objj.j @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/mainraw · history · blame

objective_j	blank	
objective_j	code	@import <Foundation/Foundation.j>
objective_j	code	@import <AppKit/AppKit.j>
objective_j	blank	
objective_j	code	@import "Superclass.j"
objective_j	blank	
objective_j	comment	/*
objective_j	comment	    I'm commenting this class 
objective_j	comment	*/
objective_j	code	@implementation Class : Superclass
objective_j	code	{
objective_j	code	    var x @accessors;
objective_j	code	}
objective_j	blank	
objective_j	code	+ (void)classMethod
objective_j	code	{
objective_j	code	    return self; // this is a comment
objective_j	code	}
objective_j	blank	
objective_j	code	- (void)instanceMethod
objective_j	code	{
objective_j	code	    return self;
objective_j	code	}
objective_j	blank	
objective_j	code	@end