From: Fariborz Jahanian Date: Tue, 17 Sep 2013 19:38:55 +0000 (+0000) Subject: ObjectiveC migrator: Don't infer a property from isXXX method X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89ac7412ea3137f22065985c562a3050130e6ca0;p=clang ObjectiveC migrator: Don't infer a property from isXXX method of retainable object (readonly or otherwise). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@190881 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ARCMigrate/ObjCMT.cpp b/lib/ARCMigrate/ObjCMT.cpp index b859c0b19d..b51f8bb493 100644 --- a/lib/ARCMigrate/ObjCMT.cpp +++ b/lib/ARCMigrate/ObjCMT.cpp @@ -741,8 +741,11 @@ bool ObjCMigrateASTConsumer::migrateProperty(ASTContext &Ctx, // try a different naming convention for getter: isXxxxx StringRef getterNameString = getterName->getName(); bool IsPrefix = getterNameString.startswith("is"); - if ((IsPrefix && !GRT->isObjCRetainableType()) || - getterNameString.startswith("get")) { + // Note that we don't want to change an isXXX method of retainable object + // type to property (readonly or otherwise). + if (IsPrefix && GRT->isObjCRetainableType()) + return false; + if (IsPrefix || getterNameString.startswith("get")) { LengthOfPrefix = (IsPrefix ? 2 : 3); const char *CGetterName = getterNameString.data() + LengthOfPrefix; // Make sure that first character after "is" or "get" prefix can @@ -759,6 +762,7 @@ bool ObjCMigrateASTConsumer::migrateProperty(ASTContext &Ctx, } } } + if (SetterMethod) { // Is this a valid setter, matching the target getter? QualType SRT = SetterMethod->getResultType(); diff --git a/test/ARCMT/objcmt-property.m.result b/test/ARCMT/objcmt-property.m.result index eff89294cf..355a8c124c 100644 --- a/test/ARCMT/objcmt-property.m.result +++ b/test/ARCMT/objcmt-property.m.result @@ -86,7 +86,7 @@ typedef char BOOL; @property(nonatomic, getter=isContinuous) BOOL continuous; -@property(nonatomic, readonly) id isAnObject; +- (id) isAnObject; - (void)setAnObject : (id) object; @property(nonatomic, getter=isinValid, readonly) BOOL inValid; @@ -138,7 +138,7 @@ typedef char BOOL; @property(nonatomic, getter=isContinuous) BOOL continuous; -@property(nonatomic, readonly) id isAnObject; +- (id) isAnObject; - (void)setAnObject : (id) object; @property(nonatomic, getter=isinValid, readonly) BOOL inValid;