
We have a new policy in place making links to private resources something we try to avoid in source and test files. Normally, we'd organically switch to the new policy rather than make a sweeping change across a project. However, Clang is in a somewhat special circumstance currently: recently, I've had several new contributors run into rdar links around test code which their patch was changing the behavior of. This turns out to be a surprisingly bad experience, especially for newer folks, for a handful of reasons: not understanding what the link is and feeling intimidated by it, wondering whether their changes are actually breaking something important to a downstream in some way, having to hunt down strangers not involved with the patch to impose on them for help, accidental pressure from asking for potentially private IP to be made public, etc. Because folks run into these links entirely by chance (through fixing bugs or working on new features), there's not really a set of problematic links to focus on -- all of the links have basically the same potential for causing these problems. As a result, this is an omnibus patch to remove all such links. This was not a mechanical change; it was done by manually searching for rdar, radar, radr, and other variants to find all the various problematic links. From there, I tried to retain or reword the surrounding comments so that we would lose as little context as possible. However, because most links were just a plain link with no supporting context, the majority of the changes are simple removals. Differential Review: https://reviews.llvm.org/D158071
399 lines
18 KiB
Objective-C
399 lines
18 KiB
Objective-C
// Note: the run lines follow their respective tests, since line/column
|
|
// matter in this test.
|
|
#define nil (void*)0
|
|
@protocol FooTestProtocol
|
|
+ protocolClassMethod;
|
|
- protocolInstanceMethod : (int)value;
|
|
@end
|
|
@interface Foo <FooTestProtocol> {
|
|
void *isa;
|
|
}
|
|
+ (int)classMethod1:a withKeyword:(int)b;
|
|
+ (void)classMethod2;
|
|
+ new;
|
|
- instanceMethod1;
|
|
@end
|
|
|
|
@interface Foo (FooTestCategory)
|
|
+ categoryClassMethod;
|
|
- categoryInstanceMethod;
|
|
@end
|
|
|
|
void func() {
|
|
Foo *obj = [Foo new];
|
|
[obj xx];
|
|
}
|
|
|
|
@interface MyClass { }
|
|
+ (int)MyClassMethod:(id)obj;
|
|
- (int)MyInstMethod:(id)x second:(id)y;
|
|
@end
|
|
|
|
@interface MySubClass : MyClass { }
|
|
+ (int)MySubClassMethod;
|
|
- (int)MySubInstMethod;
|
|
@end
|
|
|
|
@implementation MyClass
|
|
+ (int)MyClassMethod:(id)obj {
|
|
return 0;
|
|
}
|
|
|
|
+ (int)MyPrivateMethod {
|
|
return 1;
|
|
}
|
|
|
|
- (int)MyInstMethod:(id)x second:(id)y {
|
|
return 2;
|
|
}
|
|
|
|
- (int)MyPrivateInstMethod {
|
|
return 3;
|
|
}
|
|
@end
|
|
MyClass *getMyClass();
|
|
@implementation MySubClass
|
|
+ (int)MySubClassMethod {
|
|
return 2;
|
|
}
|
|
|
|
+ (int)MySubPrivateMethod {
|
|
return [super MyPrivateMethod];
|
|
}
|
|
|
|
- (int)MySubInstMethod:(id)obj {
|
|
return [super MyInstMethod: obj second:obj];
|
|
}
|
|
|
|
- (int)MyInstMethod:(id)x second:(id)y {
|
|
return 3;
|
|
}
|
|
@end
|
|
|
|
void test_super_var(MySubClass *super) {
|
|
[super MyInstMethod: super second:super];
|
|
}
|
|
|
|
@protocol FooTestProtocol2
|
|
- (int)secondProtocolInstanceMethod;
|
|
@end
|
|
|
|
void test_qual_id(id<FooTestProtocol,FooTestProtocol2> ptr) {
|
|
[ptr protocolInstanceMethod:1];
|
|
}
|
|
|
|
@interface Overload
|
|
- (int)Method:(int)i;
|
|
- (int)Method;
|
|
- (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2;
|
|
- (int)Method:(float)f Arg1:(int)i1 OtherArg:(id)obj;
|
|
- (int)Method:(float)f SomeArg:(int)i1 OtherArg:(id)obj;
|
|
- (int)OtherMethod:(float)f Arg1:(int)i1 Arg2:(int)i2;
|
|
@end
|
|
|
|
void test_overload(Overload *ovl) {
|
|
[ovl Method:1 Arg1:1 OtherArg:ovl];
|
|
}
|
|
|
|
@interface Ellipsis
|
|
- (int)Method:(int)i, ...;
|
|
- (int)SentinelMethod:(int)i, ... __attribute__((sentinel(0,1)));
|
|
@end
|
|
void f(Ellipsis *e) {
|
|
[e Method:1, 2, 3];
|
|
}
|
|
|
|
@interface Overload2
|
|
+ (int)Method:(int)i;
|
|
+ (int)Method;
|
|
+ (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2;
|
|
+ (int)Method:(float)f Arg1:(int)i1 OtherArg:(id)obj;
|
|
+ (int)Method:(float)f SomeArg:(int)i1 OtherArg:(id)obj;
|
|
+ (int)OtherMethod:(float)f Arg1:(int)i1 Arg2:(int)i2;
|
|
@end
|
|
|
|
void test_overload2(void) {
|
|
[Overload2 Method:1 Arg1:1 OtherArg:ovl];
|
|
}
|
|
|
|
void msg_id(id x) {
|
|
[x Method:1 Arg1:1 OtherArg:ovl];
|
|
[[x blarg] Method:1 Arg1:1 OtherArg:ovl];
|
|
[id Method:1 Arg1:1 OtherArg:ovl];
|
|
}
|
|
|
|
@interface A
|
|
- (void)method1;
|
|
@end
|
|
|
|
@interface B : A
|
|
- (void)method2;
|
|
@end
|
|
|
|
void test_ranking(B *b) {
|
|
[b method1];
|
|
b method1];
|
|
}
|
|
|
|
void test_overload3(Overload *ovl) {
|
|
ovl Method:1 Arg1:1 OtherArg:ovl];
|
|
Overload2 Method:1 Arg1:1 OtherArg:ovl];
|
|
(Overload2 Method:1 Arg1:1 OtherArg:ovl]);
|
|
}
|
|
|
|
@interface C : B
|
|
- (void)method2;
|
|
- (void)method3;
|
|
@end
|
|
|
|
void test_redundancy(C *c) {
|
|
[c method2];
|
|
};
|
|
|
|
@protocol P
|
|
- (Class)class;
|
|
@end
|
|
|
|
@interface A () <P>
|
|
@end
|
|
|
|
@interface A ()
|
|
+ (void)class_method3;
|
|
@end
|
|
|
|
@interface A (Cat)
|
|
+ (void)class_method4;
|
|
@end
|
|
|
|
@implementation A
|
|
- (void)method5:(A*)a {
|
|
[[self class] class_method4];
|
|
}
|
|
@end
|
|
|
|
void test_missing_open_more() {
|
|
A *a = A class_method3];
|
|
}
|
|
|
|
void test_block_invoke(A *(^block1)(int),
|
|
int (^block2)(int),
|
|
id (^block3)(int)) {
|
|
[block1(5) init];
|
|
}
|
|
|
|
@interface DO
|
|
- (void)method:(in bycopy A*)ain result:(out byref A**)aout;
|
|
@end
|
|
|
|
void test_DO(DO *d, A* a) {
|
|
[d method:a aout:&a];
|
|
}
|
|
|
|
@interface Nullability
|
|
- (nonnull A *)method:(nullable A *)param;
|
|
@end
|
|
|
|
void test_Nullability(Nullability *n, A* a) {
|
|
[n method: a];
|
|
}
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:23:19 %s | FileCheck -check-prefix=CHECK-CC1 %s
|
|
// CHECK-CC1: {TypedText categoryClassMethod} (35)
|
|
// CHECK-CC1: {TypedText classMethod1:}{Placeholder (id)}{HorizontalSpace }{TypedText withKeyword:}{Placeholder (int)} (35)
|
|
// CHECK-CC1: {TypedText classMethod2} (35)
|
|
// CHECK-CC1: {TypedText instanceMethod1} (35)
|
|
// CHECK-CC1: {TypedText new} (35)
|
|
// CHECK-CC1: {TypedText protocolClassMethod} (37)
|
|
// CHECK-CC1: Completion contexts:
|
|
// CHECK-CC1-NEXT: Objective-C class method
|
|
// CHECK-CC1-NEXT: Container Kind: ObjCInterfaceDecl
|
|
// CHECK-CC1-NEXT: Container is complete
|
|
// CHECK-CC1-NEXT: Container USR: c:objc(cs)Foo
|
|
// RUN: c-index-test -code-completion-at=%s:24:8 %s | FileCheck -check-prefix=CHECK-CC2 %s
|
|
// CHECK-CC2: {TypedText categoryInstanceMethod}
|
|
// CHECK-CC2: {TypedText instanceMethod1}
|
|
// CHECK-CC2: {TypedText protocolInstanceMethod:}{Placeholder (int)}
|
|
// CHECK-CC2: Completion contexts:
|
|
// CHECK-CC2-NEXT: Objective-C instance method
|
|
// CHECK-CC2-NEXT: Container Kind: ObjCInterfaceDecl
|
|
// CHECK-CC2-NEXT: Container is complete
|
|
// CHECK-CC2-NEXT: Container USR: c:objc(cs)Foo
|
|
// RUN: c-index-test -code-completion-at=%s:61:17 %s | FileCheck -check-prefix=CHECK-CC3 %s
|
|
// CHECK-CC3: ObjCClassMethodDecl:{ResultType int}{TypedText MyClassMethod:}{Placeholder (id)}
|
|
// CHECK-CC3: ObjCClassMethodDecl:{ResultType int}{TypedText MyPrivateMethod}
|
|
// RUN: c-index-test -code-completion-at=%s:65:17 %s | FileCheck -check-prefix=CHECK-CC4 %s
|
|
// CHECK-CC4: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyInstMethod:}{Placeholder (id)}{HorizontalSpace }{TypedText second:}{Placeholder (id)}
|
|
// CHECK-CC4: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyPrivateInstMethod}
|
|
// RUN: c-index-test -code-completion-at=%s:74:10 %s | FileCheck -check-prefix=CHECK-CC5 %s
|
|
// CHECK-CC5: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyInstMethod:}{Placeholder (id)}{HorizontalSpace }{TypedText second:}{Placeholder (id)}
|
|
// CHECK-CC5: ObjCInstanceMethodDecl:{ResultType int}{TypedText MySubInstMethod}
|
|
// RUN: c-index-test -code-completion-at=%s:82:8 %s | FileCheck -check-prefix=CHECK-CC6 %s
|
|
// CHECK-CC6: ObjCInstanceMethodDecl:{ResultType id}{TypedText protocolInstanceMethod:}{Placeholder (int)}
|
|
// CHECK-CC6: ObjCInstanceMethodDecl:{ResultType int}{TypedText secondProtocolInstanceMethod}
|
|
// RUN: c-index-test -code-completion-at=%s:95:8 %s | FileCheck -check-prefix=CHECK-CC7 %s
|
|
// CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method}
|
|
// CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (int)}
|
|
// CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
|
|
// CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText OtherArg:}{Placeholder (id)}
|
|
// CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{TypedText SomeArg:}{Placeholder (int)}{HorizontalSpace }{TypedText OtherArg:}{Placeholder (id)}
|
|
// CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText OtherMethod:}{Placeholder (float)}{HorizontalSpace }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
|
|
// RUN: c-index-test -code-completion-at=%s:95:17 %s | FileCheck -check-prefix=CHECK-CC8 %s
|
|
// CHECK-CC8: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
|
|
// CHECK-CC8: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText OtherArg:}{Placeholder (id)}
|
|
// CHECK-CC8: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{TypedText SomeArg:}{Placeholder (int)}{HorizontalSpace }{TypedText OtherArg:}{Placeholder (id)}
|
|
// CHECK-CC8-NOT: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{TypedText }
|
|
// RUN: c-index-test -code-completion-at=%s:95:24 %s | FileCheck -check-prefix=CHECK-CC9 %s
|
|
// CHECK-CC9: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{Informative Arg1:}{TypedText Arg2:}{Placeholder (int)}
|
|
// CHECK-CC9: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{Informative Arg1:}{TypedText OtherArg:}{Placeholder (id)}
|
|
// CHECK-CC9: Objective-C selector: Method:Arg1:
|
|
// RUN: c-index-test -code-completion-at=%s:61:11 %s | FileCheck -check-prefix=CHECK-CCA %s
|
|
// CHECK-CCA: TypedefDecl:{TypedText Class} (50)
|
|
// CHECK-CCA-NEXT: ObjCInterfaceDecl:{TypedText Foo} (50)
|
|
// CHECK-CCA-NOT: FunctionDecl:{ResultType void}{TypedText func}{LeftParen (}{RightParen )} (50)
|
|
// CHECK-CCA:FunctionDecl:{ResultType MyClass *}{TypedText getMyClass}{LeftParen (}{RightParen )} (50)
|
|
// CHECK-CCA: TypedefDecl:{TypedText id} (50)
|
|
// CHECK-CCA: ObjCInterfaceDecl:{TypedText MyClass} (50)
|
|
// CHECK-CCA: ObjCInterfaceDecl:{TypedText MySubClass} (50)
|
|
// CHECK-CCA: {ResultType Class}{TypedText self} (34)
|
|
// CHECK-CCA: {TypedText super} (40)
|
|
// RUN: c-index-test -code-completion-at=%s:103:6 %s | FileCheck -check-prefix=CHECK-CCB %s
|
|
// CHECK-CCB: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (int), ...}
|
|
// CHECK-CCB: ObjCInstanceMethodDecl:{ResultType int}{TypedText SentinelMethod:}{Placeholder (int), ...}{Text , nil}
|
|
// RUN: c-index-test -code-completion-at=%s:116:14 %s | FileCheck -check-prefix=CHECK-CCC %s
|
|
// CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method}
|
|
// CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (int)}
|
|
// CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
|
|
// CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText OtherArg:}{Placeholder (id)}
|
|
// CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{TypedText SomeArg:}{Placeholder (int)}{HorizontalSpace }{TypedText OtherArg:}{Placeholder (id)}
|
|
// CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText OtherMethod:}{Placeholder (float)}{HorizontalSpace }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
|
|
// RUN: c-index-test -code-completion-at=%s:116:23 %s | FileCheck -check-prefix=CHECK-CCD %s
|
|
// CHECK-CCD: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
|
|
// CHECK-CCD: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText OtherArg:}{Placeholder (id)}
|
|
// CHECK-CCD: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{TypedText SomeArg:}{Placeholder (int)}{HorizontalSpace }{TypedText OtherArg:}{Placeholder (id)}
|
|
// CHECK-CCD-NOT: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{TypedText }
|
|
// CHECK-CCD: Objective-C selector: Method:
|
|
// RUN: c-index-test -code-completion-at=%s:116:30 %s | FileCheck -check-prefix=CHECK-CCE %s
|
|
// CHECK-CCE: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{Informative Arg1:}{TypedText Arg2:}{Placeholder (int)}
|
|
// CHECK-CCE: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{Informative Arg1:}{TypedText OtherArg:}{Placeholder (id)}
|
|
// RUN: c-index-test -code-completion-at=%s:61:11 %s | FileCheck -check-prefix=CHECK-CCF %s
|
|
// CHECK-CCF: TypedefDecl:{TypedText Class}
|
|
// CHECK-CCF: ObjCInterfaceDecl:{TypedText Foo}
|
|
// CHECK-CCF-NOT: FunctionDecl:{ResultType void}{TypedText func}{LeftParen (}{RightParen )}
|
|
// CHECK-CCF: TypedefDecl:{TypedText id}
|
|
// CHECK-CCF: ObjCInterfaceDecl:{TypedText MyClass}
|
|
// CHECK-CCF: ObjCInterfaceDecl:{TypedText MySubClass}
|
|
// CHECK-CCF: {ResultType Class}{TypedText self}
|
|
// CHECK-CCF: {TypedText super}
|
|
// RUN: c-index-test -code-completion-at=%s:120:6 %s | FileCheck -check-prefix=CHECK-CCG %s
|
|
// CHECK-CCG: ObjCInstanceMethodDecl:{ResultType id}{TypedText categoryInstanceMethod}
|
|
// CHECK-CCG: ObjCInstanceMethodDecl:{ResultType id}{TypedText instanceMethod1}
|
|
// CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method}
|
|
// CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyInstMethod:}{Placeholder (id)}{HorizontalSpace }{TypedText second:}{Placeholder (id)}
|
|
// CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyPrivateInstMethod}
|
|
// CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText MySubInstMethod}
|
|
// CHECK-CCG: ObjCInstanceMethodDecl:{ResultType id}{TypedText protocolInstanceMethod:}{Placeholder (int)}
|
|
// CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText secondProtocolInstanceMethod}
|
|
// RUN: c-index-test -code-completion-at=%s:121:14 %s | FileCheck -check-prefix=CHECK-CCG %s
|
|
// RUN: c-index-test -code-completion-at=%s:122:7 %s | FileCheck -check-prefix=CHECK-CCH %s
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType id}{TypedText categoryClassMethod}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod1:}{Placeholder (id)}{HorizontalSpace }{TypedText withKeyword:}{Placeholder (int)}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType void}{TypedText classMethod2}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText Method}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (int)}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText MyClassMethod:}{Placeholder (id)}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText MyPrivateMethod}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText MySubClassMethod}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText MySubPrivateMethod}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType id}{TypedText new}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText OtherMethod:}{Placeholder (float)}{HorizontalSpace }{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{TypedText Arg2:}{Placeholder (int)}
|
|
// CHECK-CCH: ObjCClassMethodDecl:{ResultType id}{TypedText protocolClassMethod}
|
|
// RUN: c-index-test -code-completion-at=%s:134:6 %s | FileCheck -check-prefix=CHECK-CCI %s
|
|
// CHECK-CCI: ObjCInstanceMethodDecl:{ResultType void}{TypedText method1} (37)
|
|
// CHECK-CCI: ObjCInstanceMethodDecl:{ResultType void}{TypedText method2} (35)
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:150:6 %s | FileCheck -check-prefix=CHECK-REDUNDANT %s
|
|
// CHECK-REDUNDANT: ObjCInstanceMethodDecl:{ResultType void}{TypedText method2} (35)
|
|
// CHECK-REDUNDANT-NOT: ObjCInstanceMethodDecl:{ResultType void}{TypedText method2}
|
|
// CHECK-REDUNDANT: ObjCInstanceMethodDecl:{ResultType void}{TypedText method3} (35)
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:170:16 %s | FileCheck -check-prefix=CHECK-CLASS-RESULT %s
|
|
// CHECK-CLASS-RESULT: ObjCClassMethodDecl:{ResultType void}{TypedText class_method3} (35)
|
|
// CHECK-CLASS-RESULT: ObjCClassMethodDecl:{ResultType void}{TypedText class_method4} (35)
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:181:4 %s | FileCheck -check-prefix=CHECK-BLOCK-RECEIVER %s
|
|
// CHECK-BLOCK-RECEIVER: ObjCInterfaceDecl:{TypedText A} (50)
|
|
// CHECK-BLOCK-RECEIVER: ObjCInterfaceDecl:{TypedText B} (50)
|
|
// CHECK-BLOCK-RECEIVER: ParmDecl:{ResultType A *(^)(int)}{TypedText block1} (34)
|
|
// CHECK-BLOCK-RECEIVER-NEXT: ParmDecl:{ResultType id (^)(int)}{TypedText block3} (34)
|
|
|
|
// Test code completion with a missing opening bracket:
|
|
// RUN: c-index-test -code-completion-at=%s:135:5 %s | FileCheck -check-prefix=CHECK-CCI %s
|
|
// RUN: c-index-test -code-completion-at=%s:139:7 %s | FileCheck -check-prefix=CHECK-CC7 %s
|
|
// RUN: c-index-test -code-completion-at=%s:139:16 %s | FileCheck -check-prefix=CHECK-CC8 %s
|
|
// RUN: c-index-test -code-completion-at=%s:139:23 %s | FileCheck -check-prefix=CHECK-CC9 %s
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:140:14 %s | FileCheck -check-prefix=CHECK-CCC %s
|
|
// RUN: c-index-test -code-completion-at=%s:140:23 %s | FileCheck -check-prefix=CHECK-CCD %s
|
|
// RUN: c-index-test -code-completion-at=%s:140:30 %s | FileCheck -check-prefix=CHECK-CCE %s
|
|
// RUN: c-index-test -code-completion-at=%s:141:14 %s | FileCheck -check-prefix=CHECK-CCC %s
|
|
// RUN: c-index-test -code-completion-at=%s:141:23 %s | FileCheck -check-prefix=CHECK-CCD %s
|
|
// RUN: c-index-test -code-completion-at=%s:141:30 %s | FileCheck -check-prefix=CHECK-CCE %s
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:175:12 %s | FileCheck -check-prefix=CHECK-CLASS-RESULT %s
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:189:6 %s | FileCheck -check-prefix=CHECK-DISTRIB-OBJECTS %s
|
|
// CHECK-DISTRIB-OBJECTS: ObjCInstanceMethodDecl:{ResultType void}{TypedText method:}{Placeholder (in bycopy A *)}{HorizontalSpace }{TypedText result:}{Placeholder (out byref A **)} (35)
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:197:6 %s | FileCheck -check-prefix=CHECK-NULLABLE %s
|
|
// CHECK-NULLABLE: ObjCInstanceMethodDecl:{ResultType A * _Nonnull}{TypedText method:}{Placeholder (nullable A *)}
|
|
|
|
// Code completion results should include instance methods from RootProtocol and
|
|
// RootClass when completing a method invocation for a RootClass object because
|
|
// RootClasses metaclass subclasses from RootClass (i.e. RootClass is actually
|
|
// an instance of RootClass).
|
|
|
|
@protocol SubRootProtocol
|
|
|
|
- (void)subProtocolInstanceMethod;
|
|
|
|
@end
|
|
|
|
@protocol RootProtocol <SubRootProtocol>
|
|
|
|
- (void)protocolInstanceMethod;
|
|
+ (void)protocolClassMethod;
|
|
|
|
@end
|
|
|
|
@interface RootClass <RootProtocol>
|
|
|
|
- (void)instanceMethod;
|
|
+ (void)classMethod;
|
|
|
|
@end
|
|
|
|
@protocol RootCategoryProtocol
|
|
|
|
- (void)categoryProtocolInstanceMethod;
|
|
|
|
@end
|
|
|
|
@interface RootClass (Cat) <RootCategoryProtocol>
|
|
|
|
- (void)categoryInstanceMethod;
|
|
|
|
@end
|
|
|
|
void completeAllTheRootThings() {
|
|
[RootClass classMethod];
|
|
}
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:388:14 %s | FileCheck -check-prefix=CHECK-ROOT %s
|
|
// CHECK-ROOT: ObjCInstanceMethodDecl:{ResultType void}{TypedText categoryInstanceMethod} (35)
|
|
// CHECK-ROOT-NEXT: ObjCInstanceMethodDecl:{ResultType void}{TypedText categoryProtocolInstanceMethod} (37)
|
|
// CHECK-ROOT-NEXT: ObjCClassMethodDecl:{ResultType void}{TypedText classMethod} (35)
|
|
// CHECK-ROOT-NEXT: ObjCInstanceMethodDecl:{ResultType void}{TypedText instanceMethod} (35)
|
|
// CHECK-ROOT-NEXT: ObjCClassMethodDecl:{ResultType void}{TypedText protocolClassMethod} (37)
|
|
// CHECK-ROOT-NEXT: ObjCInstanceMethodDecl:{ResultType void}{TypedText protocolInstanceMethod} (37)
|
|
// CHECK-ROOT-NEXT: ObjCInstanceMethodDecl:{ResultType void}{TypedText subProtocolInstanceMethod} (37)
|