Codebase list ohcount / 85104d5a-b71d-4620-9315-33d4daf34104/main test / expected_dir / objj.j
85104d5a-b71d-4620-9315-33d4daf34104/main

Tree @85104d5a-b71d-4620-9315-33d4daf34104/main (Download .tar.gz)

objj.j @85104d5a-b71d-4620-9315-33d4daf34104/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