2012-02-29 07:39:24 +08:00
|
|
|
@interface I
|
|
|
|
@property (readonly) id prop;
|
|
|
|
-(id)prop;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface I()
|
|
|
|
@property (assign,readwrite) id prop;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation I
|
|
|
|
@synthesize prop = _prop;
|
|
|
|
@end
|
|
|
|
|
2012-06-08 10:16:11 +08:00
|
|
|
// rdar://11015325
|
2012-03-24 07:24:18 +08:00
|
|
|
@interface I1
|
|
|
|
__attribute__((something)) @interface I2 @end
|
|
|
|
@end
|
|
|
|
|
2012-06-08 10:16:11 +08:00
|
|
|
@interface I3
|
|
|
|
@property (assign,readwrite) id auto_prop;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation I3
|
|
|
|
-(void)meth {
|
|
|
|
_auto_prop = 0;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2012-06-08 11:54:16 +08:00
|
|
|
// RUN: c-index-test -index-file %s -target x86_64-apple-macosx10.7 > %t
|
2012-03-24 07:24:18 +08:00
|
|
|
// RUN: FileCheck %s -input-file=%t
|
2012-02-29 07:39:24 +08:00
|
|
|
// CHECK: [indexDeclaration]: kind: objc-class | name: I | {{.*}} | loc: 1:12
|
|
|
|
// CHECK: [indexDeclaration]: kind: objc-instance-method | name: prop | {{.*}} | loc: 3:2
|
|
|
|
// CHECK: [indexDeclaration]: kind: objc-property | name: prop | {{.*}} | loc: 2:25
|
|
|
|
// CHECK: [indexDeclaration]: kind: objc-category | name: | {{.*}} | loc: 6:12
|
|
|
|
// CHECK: [indexDeclaration]: kind: objc-instance-method | name: setProp: | {{.*}} | loc: 7:33
|
|
|
|
// CHECK: [indexDeclaration]: kind: objc-property | name: prop | {{.*}} | loc: 7:33
|
|
|
|
|
|
|
|
// CHECK: [indexDeclaration]: kind: objc-ivar | name: _prop | {{.*}} | loc: 11:20
|
|
|
|
// CHECK: [indexDeclaration]: kind: objc-instance-method | name: prop | {{.*}} | loc: 11:13 | {{.*}} | lexical-container: [I:10:17]
|
|
|
|
// CHECK: [indexDeclaration]: kind: objc-instance-method | name: setProp: | {{.*}} | loc: 11:13 | {{.*}} | lexical-container: [I:10:17]
|
2012-06-08 10:16:11 +08:00
|
|
|
|
|
|
|
// CHECK: [indexDeclaration]: kind: objc-ivar | name: _auto_prop | {{.*}} | loc: 20:33
|
|
|
|
// CHECK: [indexEntityReference]: kind: objc-ivar | name: _auto_prop | {{.*}} | loc: 25:3
|