• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Test is line- and column-sensitive. Run lines are below.
2 
3 struct X {
4   X();
5   X(int);
6   X(int, int);
7   X(const X&);
8 };
9 
getX(int value)10 X getX(int value) {
11   switch (value) {
12   case 1: return X(value);
13   case 2: return X(value, value);
14   case 3: return (X)value;
15   default: break;
16   }
17   return X();
18 }
19 
20 struct Y {
21   int member;
22 
23   X getX();
24 };
25 
getX()26 X Y::getX() {
27   return member;
28 }
29 
30 struct YDerived : Y {
getAnotherXYDerived31   X getAnotherX() { return member; }
32 };
33 
test()34 void test() {
35   X foo;
36 
37   try {
38   } catch (X e) {
39     X x;
40   }
41 }
42 
43 // RUN: c-index-test -cursor-at=%s:6:4 %s | FileCheck -check-prefix=CHECK-COMPLETION-1 %s
44 // CHECK-COMPLETION-1: CXXConstructor=X:6:3
45 // CHECK-COMPLETION-1-NEXT: Completion string: {TypedText X}{LeftParen (}{Placeholder int}{Comma , }{Placeholder int}{RightParen )}
46 
47 // RUN: c-index-test -cursor-at=%s:31:16 %s | FileCheck -check-prefix=CHECK-COMPLETION-2 %s
48 // CHECK-COMPLETION-2: CXXMethod=getAnotherX:31:5 (Definition)
49 // CHECK-COMPLETION-2-NEXT: Completion string: {ResultType X}{TypedText getAnotherX}{LeftParen (}{RightParen )}
50 
51 // RUN: c-index-test -cursor-at=%s:12:20 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
52 // RUN: c-index-test -cursor-at=%s:13:21 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
53 // RUN: c-index-test -cursor-at=%s:13:28 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
54 // RUN: c-index-test -cursor-at=%s:14:23 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
55 // CHECK-VALUE-REF: DeclRefExpr=value:10:12
56 
57 // RUN: c-index-test -cursor-at=%s:12:18 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR1 %s
58 // RUN: c-index-test -cursor-at=%s:13:18 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR2 %s
59 // RUN: c-index-test -cursor-at=%s:14:19 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR1 %s
60 // RUN: c-index-test -cursor-at=%s:17:10 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR3 %s
61 // CHECK-TYPE-REF: TypeRef=struct X:3:8
62 // CHECK-CONSTRUCTOR1: CallExpr=X:5:3
63 // CHECK-CONSTRUCTOR2: CallExpr=X:6:3
64 // CHECK-CONSTRUCTOR3: CallExpr=X:4:3
65 
66 // RUN: c-index-test -cursor-at=%s:23:3 %s | FileCheck -check-prefix=CHECK-RETTYPE %s
67 // RUN: c-index-test -cursor-at=%s:26:1 %s | FileCheck -check-prefix=CHECK-RETTYPE %s
68 // CHECK-RETTYPE: TypeRef=struct X:3:8
69 
70 // RUN: c-index-test -cursor-at=%s:23:7 %s | FileCheck -check-prefix=CHECK-MEMFUNC-DECL %s
71 // CHECK-MEMFUNC-DECL: CXXMethod=getX:23:5
72 // RUN: c-index-test -cursor-at=%s:26:7 %s | FileCheck -check-prefix=CHECK-MEMFUNC-DEF %s
73 // CHECK-MEMFUNC-DEF: CXXMethod=getX:26:6
74 
75 // RUN: c-index-test -cursor-at=%s:26:3 %s | FileCheck -check-prefix=CHECK-TYPEREF-Y %s
76 // CHECK-TYPEREF-Y: TypeRef=struct Y:20:8
77 
78 // RUN: c-index-test -cursor-at=%s:27:10 %s | FileCheck -check-prefix=CHECK-IMPLICIT-MEMREF %s
79 // RUN: c-index-test -cursor-at=%s:31:28 %s | FileCheck -check-prefix=CHECK-IMPLICIT-MEMREF %s
80 // CHECK-IMPLICIT-MEMREF: MemberRefExpr=member:21:7
81 
82 // RUN: c-index-test -cursor-at=%s:35:5 %s | FileCheck -check-prefix=CHECK-DECL %s
83 // CHECK-DECL: VarDecl=foo:35:5
84 
85 // RUN: c-index-test -cursor-at=%s:21:3 %s | FileCheck -check-prefix=CHECK-MEMBER %s
86 // CHECK-MEMBER: FieldDecl=member:21:7 (Definition)
87 // CHECK-MEMBER-NEXT: Completion string: {ResultType int}{TypedText member}
88 
89 // RUN: c-index-test -cursor-at=%s:38:12 -cursor-at=%s:39:5 %s | FileCheck -check-prefix=CHECK-CXXCATCH %s
90 // CHECK-CXXCATCH: TypeRef=struct X:3:8
91 // CHECK-CXXCATCH-NEXT: TypeRef=struct X:3:8
92 
93 // RUN: c-index-test -test-load-source-usrs local %s | FileCheck -check-prefix=CHECK-USR %s
94 // CHECK-USR: get-cursor.cpp c:get-cursor.cpp@472@F@test#@e Extent=[38:12 - 38:15]
95 // CHECK-USR: get-cursor.cpp c:get-cursor.cpp@483@F@test#@x Extent=[39:5 - 39:8]
96