forked from OSchip/llvm-project
25 lines
1.0 KiB
Objective-C
25 lines
1.0 KiB
Objective-C
/* Run lines are at the end, since line/column matter in this test. */
|
|
@interface MyClass { }
|
|
@end
|
|
|
|
@implementation MyClass
|
|
@end
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:2:2 %s | FileCheck -check-prefix=CHECK-CC1 %s
|
|
// CHECK-CC1: {TypedText class}{Text }{Placeholder identifier}{Text ;}
|
|
// CHECK-CC1: {TypedText compatibility_alias}{Text }{Placeholder alias}{Text }{Placeholder class}
|
|
// CHECK-CC1: {TypedText implementation}{Text }{Placeholder class}
|
|
// CHECK-CC1: {TypedText interface}{Text }{Placeholder class}
|
|
// CHECK-CC1: {TypedText protocol}{Text }{Placeholder protocol}
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:3:2 %s | FileCheck -check-prefix=CHECK-CC2 %s
|
|
// CHECK-CC2: {TypedText end}
|
|
// CHECK-CC2: {TypedText optional}
|
|
// CHECK-CC2: {TypedText property}
|
|
// CHECK-CC2: {TypedText required}
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:6:2 %s | FileCheck -check-prefix=CHECK-CC3 %s
|
|
// CHECK-CC3: {TypedText dynamic}{Text }{Placeholder property}
|
|
// CHECK-CC3: {TypedText end}
|
|
// CHECK-CC3: {TypedText synthesize}{Text }{Placeholder property}
|