Add quickfix for unsupported typedef NSFoo Bar.

This commit is contained in:
Svyatoslav Scherbina
2017-10-17 11:15:48 +03:00
committed by SvyatoslavScherbina
parent e8f97b0436
commit ffb0d0cfcb
2 changed files with 30 additions and 2 deletions
+3 -1
View File
@@ -5,8 +5,10 @@
-(void)print:(const char*)string;
@end;
typedef NSString NSStringTypedef;
@interface Foo : NSObject
@property NSString* name;
@property NSStringTypedef* name;
-(void)helloWithPrinter:(id <Printer>)printer;
@end;