forked from OSchip/llvm-project
ObjectiveC migration: more migration to
instancetype of NSDictionary methods. llvm-svn: 187008
This commit is contained in:
parent
c54731aa9d
commit
631925fe62
|
@ -557,8 +557,14 @@ void ObjCMigrateASTConsumer::migrateMethodInstanceType(ASTContext &Ctx,
|
|||
if (OIT_Family == OIT_None)
|
||||
return;
|
||||
// TODO. Many more to come
|
||||
if (OIT_Family != OIT_Array)
|
||||
return;
|
||||
switch (OIT_Family) {
|
||||
case OIT_Array:
|
||||
break;
|
||||
case OIT_Dictionary:
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
if (!OM->getResultType()->isObjCIdType())
|
||||
return;
|
||||
|
||||
|
@ -569,7 +575,14 @@ void ObjCMigrateASTConsumer::migrateMethodInstanceType(ASTContext &Ctx,
|
|||
else if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(CDecl))
|
||||
IDecl = ImpDecl->getClassInterface();
|
||||
}
|
||||
if (!IDecl || !IDecl->lookupInheritedClass(&Ctx.Idents.get("NSArray")))
|
||||
if (!IDecl)
|
||||
return;
|
||||
|
||||
if (OIT_Family == OIT_Array &&
|
||||
!IDecl->lookupInheritedClass(&Ctx.Idents.get("NSArray")))
|
||||
return;
|
||||
else if (OIT_Family == OIT_Dictionary &&
|
||||
!IDecl->lookupInheritedClass(&Ctx.Idents.get("NSDictionary")))
|
||||
return;
|
||||
|
||||
TypeSourceInfo *TSInfo = OM->getResultTypeSourceInfo();
|
||||
|
|
|
@ -44,12 +44,12 @@ typedef signed char BOOL;
|
|||
@end
|
||||
|
||||
@interface NSDictionary (NSDictionaryCreation)
|
||||
+ (id)dictionary;
|
||||
+ (id)dictionaryWithObject:(id)object forKey:(id)key;
|
||||
+ (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
|
||||
+ (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
|
||||
+ (id)dictionaryWithDictionary:(NSDictionary *)dict;
|
||||
+ (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
||||
+ (instancetype)dictionary;
|
||||
+ (instancetype)dictionaryWithObject:(id)object forKey:(id)key;
|
||||
+ (instancetype)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
|
||||
+ (instancetype)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
|
||||
+ (instancetype)dictionaryWithDictionary:(NSDictionary *)dict;
|
||||
+ (instancetype)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
||||
|
||||
- (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
|
||||
- (id)initWithObjectsAndKeys:(id)firstObject, ...;
|
||||
|
|
Loading…
Reference in New Issue