Skip to content
Snippets Groups Projects
Commit 631435fb authored by Fariborz Jahanian's avatar Fariborz Jahanian
Browse files

ObjC migration: more test for migration to

properties.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185884 91177308-0d34-0410-b5e6-96231b3b80d8
parent 6c4898b6
No related branches found
No related tags found
No related merge requests found
......@@ -28,3 +28,22 @@
@implementation I
@end
@class NSArray;
@interface MyClass2 {
@private
NSArray *_names1;
NSArray *_names2;
NSArray *_names3;
NSArray *_names4;
}
- (void)setNames1:(NSArray *)names;
- (void)setNames4:(__strong NSArray *)names;
- (void)setNames3:(__strong NSArray *)names;
- (void)setNames2:(NSArray *)names;
- (NSArray *) names2;
- (NSArray *)names3;
- (__strong NSArray *)names4;
- (NSArray *) names1;
@end
......@@ -28,3 +28,22 @@
@implementation I
@end
@class NSArray;
@interface MyClass2 {
@private
NSArray *_names1;
NSArray *_names2;
NSArray *_names3;
NSArray *_names4;
}
@property(strong) NSArray * names2;
@property(strong) NSArray * names3;
@property(strong) NSArray *__strong names4;
@property(strong) NSArray * names1;
@end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment