projects
/
ohcount
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
OTWO-1213 Works around lost encoding in Ruby/C binding layer
[ohcount]
/
test
/
src_dir
/
objj.j
1
2
@import <Foundation/Foundation.j>
3
@import <AppKit/AppKit.j>
4
5
@import "Superclass.j"
6
7
/*
8
I'm commenting this class
9
*/
10
@implementation Class : Superclass
11
{
12
var x @accessors;
13
}
14
15
+ (void)classMethod
16
{
17
return self; // this is a comment
18
}
19
20
- (void)instanceMethod
21
{
22
return self;
23
}
24
25
@end