aboutsummaryrefslogtreecommitdiff
path: root/test/CodeCompletion/objc-expr.m
blob: 82ce5381fd258fe8a496b6cf141dbede207d3fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Note: the run lines follow all tests, since line/column matter here

id testCompleteAfterAtSign() {
  return @"";
}

// RUN: %clang_cc1 -fsyntax-only -code-completion-patterns -code-completion-at=%s:4:11 %s -fno-const-strings -o - | FileCheck -check-prefix=AT %s
// CHECK-AT: COMPLETION: Pattern : [#NSString *#]"<#string#>"
// CHECK-AT: COMPLETION: Pattern : [#id#]( <#expression#> )
// CHECK-AT: COMPLETION: Pattern : [#NSArray *#][ <#objects, ...#> ]
// CHECK-AT: COMPLETION: Pattern : [#char[]#]encode(<#type-name#>)
// CHECK-AT: COMPLETION: Pattern : [#Protocol *#]protocol(<#protocol-name#>)
// CHECK-AT: COMPLETION: Pattern : [#SEL#]selector(<#selector#>)
// CHECK-AT: COMPLETION: Pattern : [#NSDictionary *#]{ <#key#> : <#object, ...#> }

// RUN: %clang_cc1 -fsyntax-only -code-completion-patterns -code-completion-at=%s:4:11 %s -fconst-strings -o - | FileCheck -check-prefix=CONST-STRINGS %s
// CHECK-CONST-STRINGS: COMPLETION: Pattern : [#const char[]#]encode(<#type-name#>)