Codebase list ohcount / 71f18fd0-2918-4673-9432-32d77816000d/main test / expected_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

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