brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.2 KiB · 486a0dc Raw
29 lines · plain
1// Note: the run lines follow their respective tests, since line/column2// matter in this test.3 4@interface C5- (int)instanceMethod3:(int)x;6+ (int)classMethod3:(float)f;7@end8 9void msg_id(id x) {10  [id classMethod1:1.0];11  [x instanceMethod1:5];12}13 14// REQUIRES: native15 16// Build the precompiled header17// RUN: c-index-test -write-pch %t.h.pch -x objective-c-header %S/Inputs/complete-pch.h18 19// Run the actual tests20// RUN: c-index-test -code-completion-at=%s:10:7 -include %t.h %s | FileCheck -check-prefix=CHECK-CC1 %s21// CHECK-CC1: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod1:}{Placeholder (double)}22// CHECK-CC1: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod2:}{Placeholder (float)}23// CHECK-CC1: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod3:}{Placeholder (float)}24 25// RUN: c-index-test -code-completion-at=%s:11:6 -include %t.h %s | FileCheck -check-prefix=CHECK-CC2 %s26// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType int}{TypedText instanceMethod1:}{Placeholder (int)}27// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType int}{TypedText instanceMethod2:}{Placeholder (int)}28// CHECK-CC2: ObjCInstanceMethodDecl:{ResultType int}{TypedText instanceMethod3:}{Placeholder (int)}29