Codebase list ohcount / upstream/4.0.0+git20210223.6654d48 test / expected_dir / objj.j
upstream/4.0.0+git20210223.6654d48

Tree @upstream/4.0.0+git20210223.6654d48 (Download .tar.gz)

objj.j @upstream/4.0.0+git20210223.6654d48raw · 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