Fixes recursion bug in disambiguate_in().
[ohcount] / test / expected_dir / objj.j
1 objective_j     blank   
2 objective_j     code    @import <Foundation/Foundation.j>
3 objective_j     code    @import <AppKit/AppKit.j>
4 objective_j     blank   
5 objective_j     code    @import "Superclass.j"
6 objective_j     blank   
7 objective_j     comment /*
8 objective_j     comment     I'm commenting this class 
9 objective_j     comment */
10 objective_j     code    @implementation Class : Superclass
11 objective_j     code    {
12 objective_j     code        var x @accessors;
13 objective_j     code    }
14 objective_j     blank   
15 objective_j     code    + (void)classMethod
16 objective_j     code    {
17 objective_j     code        return self; // this is a comment
18 objective_j     code    }
19 objective_j     blank   
20 objective_j     code    - (void)instanceMethod
21 objective_j     code    {
22 objective_j     code        return self;
23 objective_j     code    }
24 objective_j     blank   
25 objective_j     code    @end