brintos

brintos / llvm-project-archived public Read only

0
0
Text · 554 B · d77775a Raw
11 lines · plain
1@interface Foo2@property (assign,readwrite,getter=b,setter=c:) id a;3@property (assign,readonly,getter=e) id d;4@property (assign,readwrite) id f;5@end6 7// RUN: c-index-test -test-print-type-declaration %s | FileCheck %s8// CHECK: ObjCPropertyDecl=a:2:52 [getter,assign,readwrite,setter,] (getter=b) (setter=c:) [typedeclaration=id] [typekind=ObjCId]9// CHECK: ObjCPropertyDecl=d:3:41 [readonly,getter,assign,] (getter=e) [typedeclaration=id] [typekind=ObjCId]10// CHECK: ObjCPropertyDecl=f:4:33 [assign,readwrite,] [typedeclaration=id] [typekind=ObjCId]11