forked from OSchip/llvm-project
[objcmt] When checking whether the subscripting methods are declared use
ObjCInterfaceDec::lookupInstanceMethod to make sure we check categories as well and update related tests. rdar://11695288 llvm-svn: 158697
This commit is contained in:
parent
31567515ed
commit
a3fcbeb908
|
@ -128,7 +128,7 @@ static bool rewriteToArraySubscriptGet(const ObjCInterfaceDecl *IFace,
|
|||
const ObjCMessageExpr *Msg,
|
||||
const NSAPI &NS,
|
||||
Commit &commit) {
|
||||
if (!IFace->getInstanceMethod(NS.getObjectAtIndexedSubscriptSelector()))
|
||||
if (!IFace->lookupInstanceMethod(NS.getObjectAtIndexedSubscriptSelector()))
|
||||
return false;
|
||||
return rewriteToSubscriptGetCommon(Msg, commit);
|
||||
}
|
||||
|
@ -137,7 +137,7 @@ static bool rewriteToDictionarySubscriptGet(const ObjCInterfaceDecl *IFace,
|
|||
const ObjCMessageExpr *Msg,
|
||||
const NSAPI &NS,
|
||||
Commit &commit) {
|
||||
if (!IFace->getInstanceMethod(NS.getObjectForKeyedSubscriptSelector()))
|
||||
if (!IFace->lookupInstanceMethod(NS.getObjectForKeyedSubscriptSelector()))
|
||||
return false;
|
||||
return rewriteToSubscriptGetCommon(Msg, commit);
|
||||
}
|
||||
|
@ -151,7 +151,7 @@ static bool rewriteToArraySubscriptSet(const ObjCInterfaceDecl *IFace,
|
|||
const Expr *Rec = Msg->getInstanceReceiver();
|
||||
if (!Rec)
|
||||
return false;
|
||||
if (!IFace->getInstanceMethod(NS.getSetObjectAtIndexedSubscriptSelector()))
|
||||
if (!IFace->lookupInstanceMethod(NS.getSetObjectAtIndexedSubscriptSelector()))
|
||||
return false;
|
||||
|
||||
SourceRange MsgRange = Msg->getSourceRange();
|
||||
|
@ -183,7 +183,7 @@ static bool rewriteToDictionarySubscriptSet(const ObjCInterfaceDecl *IFace,
|
|||
const Expr *Rec = Msg->getInstanceReceiver();
|
||||
if (!Rec)
|
||||
return false;
|
||||
if (!IFace->getInstanceMethod(NS.getSetObjectForKeyedSubscriptSelector()))
|
||||
if (!IFace->lookupInstanceMethod(NS.getSetObjectForKeyedSubscriptSelector()))
|
||||
return false;
|
||||
|
||||
SourceRange MsgRange = Msg->getSourceRange();
|
||||
|
|
|
@ -12,6 +12,9 @@ typedef const struct __CFString * CFStringRef;
|
|||
+ (id)alloc;
|
||||
@end
|
||||
|
||||
@protocol NSCopying
|
||||
@end
|
||||
|
||||
@interface NSString : NSObject
|
||||
+ (id)stringWithString:(NSString *)string;
|
||||
- (id)initWithString:(NSString *)aString;
|
||||
|
@ -19,7 +22,10 @@ typedef const struct __CFString * CFStringRef;
|
|||
|
||||
@interface NSArray : NSObject
|
||||
- (id)objectAtIndex:(unsigned long)index;
|
||||
- (id)objectAtIndexedSubscript:(int)index;
|
||||
@end
|
||||
|
||||
@interface NSArray (NSExtendedArray)
|
||||
- (id)objectAtIndexedSubscript:(unsigned)idx;
|
||||
@end
|
||||
|
||||
@interface NSArray (NSArrayCreation)
|
||||
|
@ -32,16 +38,21 @@ typedef const struct __CFString * CFStringRef;
|
|||
- (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
|
||||
- (id)initWithObjects:(id)firstObj, ...;
|
||||
- (id)initWithArray:(NSArray *)array;
|
||||
|
||||
- (id)objectAtIndex:(unsigned long)index;
|
||||
@end
|
||||
|
||||
@interface NSMutableArray : NSArray
|
||||
- (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
|
||||
- (void)setObject:(id)object atIndexedSubscript:(int)index;
|
||||
@end
|
||||
|
||||
@interface NSMutableArray (NSExtendedMutableArray)
|
||||
- (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx;
|
||||
@end
|
||||
|
||||
@interface NSDictionary : NSObject
|
||||
- (id)objectForKey:(id)aKey;
|
||||
@end
|
||||
|
||||
@interface NSDictionary (NSExtendedDictionary)
|
||||
- (id)objectForKeyedSubscript:(id)key;
|
||||
@end
|
||||
|
||||
|
@ -57,13 +68,14 @@ typedef const struct __CFString * CFStringRef;
|
|||
- (id)initWithObjectsAndKeys:(id)firstObject, ...;
|
||||
- (id)initWithDictionary:(NSDictionary *)otherDictionary;
|
||||
- (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
||||
|
||||
- (id)objectForKey:(id)aKey;
|
||||
@end
|
||||
|
||||
@interface NSMutableDictionary : NSDictionary
|
||||
- (void)setObject:(id)anObject forKey:(id)aKey;
|
||||
- (void)setObject:(id)object forKeyedSubscript:(id)key;
|
||||
@end
|
||||
|
||||
@interface NSMutableDictionary (NSExtendedMutableDictionary)
|
||||
- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
|
||||
@end
|
||||
|
||||
@interface NSNumber : NSObject
|
||||
|
|
|
@ -12,6 +12,9 @@ typedef const struct __CFString * CFStringRef;
|
|||
+ (id)alloc;
|
||||
@end
|
||||
|
||||
@protocol NSCopying
|
||||
@end
|
||||
|
||||
@interface NSString : NSObject
|
||||
+ (id)stringWithString:(NSString *)string;
|
||||
- (id)initWithString:(NSString *)aString;
|
||||
|
@ -19,7 +22,10 @@ typedef const struct __CFString * CFStringRef;
|
|||
|
||||
@interface NSArray : NSObject
|
||||
- (id)objectAtIndex:(unsigned long)index;
|
||||
- (id)objectAtIndexedSubscript:(int)index;
|
||||
@end
|
||||
|
||||
@interface NSArray (NSExtendedArray)
|
||||
- (id)objectAtIndexedSubscript:(unsigned)idx;
|
||||
@end
|
||||
|
||||
@interface NSArray (NSArrayCreation)
|
||||
|
@ -32,16 +38,21 @@ typedef const struct __CFString * CFStringRef;
|
|||
- (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
|
||||
- (id)initWithObjects:(id)firstObj, ...;
|
||||
- (id)initWithArray:(NSArray *)array;
|
||||
|
||||
- (id)objectAtIndex:(unsigned long)index;
|
||||
@end
|
||||
|
||||
@interface NSMutableArray : NSArray
|
||||
- (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
|
||||
- (void)setObject:(id)object atIndexedSubscript:(int)index;
|
||||
@end
|
||||
|
||||
@interface NSMutableArray (NSExtendedMutableArray)
|
||||
- (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx;
|
||||
@end
|
||||
|
||||
@interface NSDictionary : NSObject
|
||||
- (id)objectForKey:(id)aKey;
|
||||
@end
|
||||
|
||||
@interface NSDictionary (NSExtendedDictionary)
|
||||
- (id)objectForKeyedSubscript:(id)key;
|
||||
@end
|
||||
|
||||
|
@ -57,13 +68,14 @@ typedef const struct __CFString * CFStringRef;
|
|||
- (id)initWithObjectsAndKeys:(id)firstObject, ...;
|
||||
- (id)initWithDictionary:(NSDictionary *)otherDictionary;
|
||||
- (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
||||
|
||||
- (id)objectForKey:(id)aKey;
|
||||
@end
|
||||
|
||||
@interface NSMutableDictionary : NSDictionary
|
||||
- (void)setObject:(id)anObject forKey:(id)aKey;
|
||||
- (void)setObject:(id)object forKeyedSubscript:(id)key;
|
||||
@end
|
||||
|
||||
@interface NSMutableDictionary (NSExtendedMutableDictionary)
|
||||
- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
|
||||
@end
|
||||
|
||||
@interface NSNumber : NSObject
|
||||
|
|
|
@ -12,6 +12,9 @@ typedef const struct __CFString * CFStringRef;
|
|||
+ (id)alloc;
|
||||
@end
|
||||
|
||||
@protocol NSCopying
|
||||
@end
|
||||
|
||||
@interface NSString : NSObject
|
||||
+ (id)stringWithString:(NSString *)string;
|
||||
- (id)initWithString:(NSString *)aString;
|
||||
|
@ -19,7 +22,10 @@ typedef const struct __CFString * CFStringRef;
|
|||
|
||||
@interface NSArray : NSObject
|
||||
- (id)objectAtIndex:(unsigned long)index;
|
||||
- (id)objectAtIndexedSubscript:(int)index;
|
||||
@end
|
||||
|
||||
@interface NSArray (NSExtendedArray)
|
||||
- (id)objectAtIndexedSubscript:(unsigned)idx;
|
||||
@end
|
||||
|
||||
@interface NSArray (NSArrayCreation)
|
||||
|
@ -32,16 +38,21 @@ typedef const struct __CFString * CFStringRef;
|
|||
- (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
|
||||
- (id)initWithObjects:(id)firstObj, ...;
|
||||
- (id)initWithArray:(NSArray *)array;
|
||||
|
||||
- (id)objectAtIndex:(unsigned long)index;
|
||||
@end
|
||||
|
||||
@interface NSMutableArray : NSArray
|
||||
- (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
|
||||
- (void)setObject:(id)object atIndexedSubscript:(int)index;
|
||||
@end
|
||||
|
||||
@interface NSMutableArray (NSExtendedMutableArray)
|
||||
- (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx;
|
||||
@end
|
||||
|
||||
@interface NSDictionary : NSObject
|
||||
- (id)objectForKey:(id)aKey;
|
||||
@end
|
||||
|
||||
@interface NSDictionary (NSExtendedDictionary)
|
||||
- (id)objectForKeyedSubscript:(id)key;
|
||||
@end
|
||||
|
||||
|
@ -57,13 +68,14 @@ typedef const struct __CFString * CFStringRef;
|
|||
- (id)initWithObjectsAndKeys:(id)firstObject, ...;
|
||||
- (id)initWithDictionary:(NSDictionary *)otherDictionary;
|
||||
- (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
||||
|
||||
- (id)objectForKey:(id)aKey;
|
||||
@end
|
||||
|
||||
@interface NSMutableDictionary : NSDictionary
|
||||
- (void)setObject:(id)anObject forKey:(id)aKey;
|
||||
- (void)setObject:(id)object forKeyedSubscript:(id)key;
|
||||
@end
|
||||
|
||||
@interface NSMutableDictionary (NSExtendedMutableDictionary)
|
||||
- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
|
||||
@end
|
||||
|
||||
@interface NSNumber : NSObject
|
||||
|
|
|
@ -12,6 +12,9 @@ typedef const struct __CFString * CFStringRef;
|
|||
+ (id)alloc;
|
||||
@end
|
||||
|
||||
@protocol NSCopying
|
||||
@end
|
||||
|
||||
@interface NSString : NSObject
|
||||
+ (id)stringWithString:(NSString *)string;
|
||||
- (id)initWithString:(NSString *)aString;
|
||||
|
@ -19,7 +22,10 @@ typedef const struct __CFString * CFStringRef;
|
|||
|
||||
@interface NSArray : NSObject
|
||||
- (id)objectAtIndex:(unsigned long)index;
|
||||
- (id)objectAtIndexedSubscript:(int)index;
|
||||
@end
|
||||
|
||||
@interface NSArray (NSExtendedArray)
|
||||
- (id)objectAtIndexedSubscript:(unsigned)idx;
|
||||
@end
|
||||
|
||||
@interface NSArray (NSArrayCreation)
|
||||
|
@ -32,16 +38,21 @@ typedef const struct __CFString * CFStringRef;
|
|||
- (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
|
||||
- (id)initWithObjects:(id)firstObj, ...;
|
||||
- (id)initWithArray:(NSArray *)array;
|
||||
|
||||
- (id)objectAtIndex:(unsigned long)index;
|
||||
@end
|
||||
|
||||
@interface NSMutableArray : NSArray
|
||||
- (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
|
||||
- (void)setObject:(id)object atIndexedSubscript:(int)index;
|
||||
@end
|
||||
|
||||
@interface NSMutableArray (NSExtendedMutableArray)
|
||||
- (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx;
|
||||
@end
|
||||
|
||||
@interface NSDictionary : NSObject
|
||||
- (id)objectForKey:(id)aKey;
|
||||
@end
|
||||
|
||||
@interface NSDictionary (NSExtendedDictionary)
|
||||
- (id)objectForKeyedSubscript:(id)key;
|
||||
@end
|
||||
|
||||
|
@ -57,13 +68,14 @@ typedef const struct __CFString * CFStringRef;
|
|||
- (id)initWithObjectsAndKeys:(id)firstObject, ...;
|
||||
- (id)initWithDictionary:(NSDictionary *)otherDictionary;
|
||||
- (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
||||
|
||||
- (id)objectForKey:(id)aKey;
|
||||
@end
|
||||
|
||||
@interface NSMutableDictionary : NSDictionary
|
||||
- (void)setObject:(id)anObject forKey:(id)aKey;
|
||||
- (void)setObject:(id)object forKeyedSubscript:(id)key;
|
||||
@end
|
||||
|
||||
@interface NSMutableDictionary (NSExtendedMutableDictionary)
|
||||
- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
|
||||
@end
|
||||
|
||||
@interface NSNumber : NSObject
|
||||
|
|
Loading…
Reference in New Issue