diff options
Diffstat (limited to 'test/Index/annotate-tokens.c')
-rw-r--r-- | test/Index/annotate-tokens.c | 50 |
1 files changed, 45 insertions, 5 deletions
diff --git a/test/Index/annotate-tokens.c b/test/Index/annotate-tokens.c index d692bd3..162a224 100644 --- a/test/Index/annotate-tokens.c +++ b/test/Index/annotate-tokens.c @@ -8,9 +8,9 @@ void f(void *ptr) { void *xx = ptr ? : &x; const char * hello = "Hello"; } - +enum Color { Red, Green, Blue }; typedef int Int; -void g(int i, ...) { +enum Color g(int i, ...) { __builtin_va_list va; (void)__builtin_va_arg(va, Int); (void)__builtin_types_compatible_p(Int, Int); @@ -19,9 +19,21 @@ void g(int i, ...) { do { x.a++; } while (x.a < 10); + + enum Color c; + switch (c) { + case Red: + return Green; + + case Green: + return Blue; + + case Blue: + return Red; + } } -// RUN: c-index-test -test-annotate-tokens=%s:4:1:22:1 %s | FileCheck %s +// RUN: c-index-test -test-annotate-tokens=%s:4:1:34:1 %s | FileCheck %s // CHECK: Identifier: "T" [4:3 - 4:4] TypeRef=T:1:13 // CHECK: Punctuation: "*" [4:4 - 4:5] VarDecl=t_ptr:4:6 (Definition) // CHECK: Identifier: "t_ptr" [4:6 - 4:11] VarDecl=t_ptr:4:6 (Definition) @@ -41,7 +53,7 @@ void g(int i, ...) { // CHECK: Punctuation: ")" [5:17 - 5:18] UnexposedExpr= // CHECK: Punctuation: ";" [5:18 - 5:19] UnexposedStmt= // CHECK: Comment: "/* A comment */" [6:3 - 6:18] UnexposedStmt= -// CHECK: Keyword: "struct" [7:3 - 7:9] UnexposedStmt= +// CHECK: Keyword: "struct" [7:3 - 7:9] VarDecl=x:7:12 (Definition) // CHECK: Identifier: "X" [7:10 - 7:11] TypeRef=struct X:2:8 // CHECK: Identifier: "x" [7:12 - 7:13] VarDecl=x:7:12 (Definition) // CHECK: Punctuation: "=" [7:14 - 7:15] VarDecl=x:7:12 (Definition) @@ -79,7 +91,7 @@ void g(int i, ...) { // CHECK: Identifier: "Int" [16:38 - 16:41] TypeRef=Int:12:13 // CHECK: Punctuation: "," [16:41 - 16:42] UnexposedExpr= // CHECK: Identifier: "Int" [16:43 - 16:46] TypeRef=Int:12:13 -// CHECK: Keyword: "struct" [18:3 - 18:9] UnexposedStmt= +// CHECK: Keyword: "struct" [18:3 - 18:9] VarDecl=x:18:12 (Definition) // CHECK: Identifier: "X" [18:10 - 18:11] TypeRef=struct X:2:8 // CHECK: Identifier: "x" [18:12 - 18:13] VarDecl=x:18:12 (Definition) // CHECK: Keyword: "do" [19:3 - 19:5] UnexposedStmt= @@ -95,5 +107,33 @@ void g(int i, ...) { // CHECK: Punctuation: "." [21:13 - 21:14] MemberRefExpr=a:2:16 // CHECK: Identifier: "a" [21:14 - 21:15] MemberRefExpr=a:2:16 +// CHECK: Keyword: "enum" [23:3 - 23:7] VarDecl=c:23:14 (Definition) +// CHECK: Identifier: "Color" [23:8 - 23:13] TypeRef=enum Color:11:6 +// CHECK: Identifier: "c" [23:14 - 23:15] VarDecl=c:23:14 (Definition) +// CHECK: Punctuation: ";" [23:15 - 23:16] UnexposedStmt= +// CHECK: Keyword: "switch" [24:3 - 24:9] UnexposedStmt= +// CHECK: Punctuation: "(" [24:10 - 24:11] UnexposedStmt= +// CHECK: Identifier: "c" [24:11 - 24:12] DeclRefExpr=c:23:14 +// CHECK: Punctuation: ")" [24:12 - 24:13] UnexposedStmt= +// CHECK: Punctuation: "{" [24:14 - 24:15] UnexposedStmt= +// CHECK: Keyword: "case" [25:3 - 25:7] UnexposedStmt= +// CHECK: Identifier: "Red" [25:8 - 25:11] DeclRefExpr=Red:11:14 +// CHECK: Punctuation: ":" [25:11 - 25:12] UnexposedStmt= +// CHECK: Keyword: "return" [26:5 - 26:11] UnexposedStmt= +// CHECK: Identifier: "Green" [26:12 - 26:17] DeclRefExpr=Green:11:19 +// CHECK: Punctuation: ";" [26:17 - 26:18] UnexposedStmt= +// CHECK: Keyword: "case" [28:3 - 28:7] UnexposedStmt= +// CHECK: Identifier: "Green" [28:8 - 28:13] DeclRefExpr=Green:11:19 +// CHECK: Punctuation: ":" [28:13 - 28:14] UnexposedStmt= +// CHECK: Keyword: "return" [29:5 - 29:11] UnexposedStmt= +// CHECK: Identifier: "Blue" [29:12 - 29:16] DeclRefExpr=Blue:11:26 +// CHECK: Punctuation: ";" [29:16 - 29:17] UnexposedStmt= +// CHECK: Keyword: "case" [31:3 - 31:7] UnexposedStmt= +// CHECK: Identifier: "Blue" [31:8 - 31:12] DeclRefExpr=Blue:11:26 +// CHECK: Punctuation: ":" [31:12 - 31:13] UnexposedStmt= +// CHECK: Keyword: "return" [32:5 - 32:11] UnexposedStmt= +// CHECK: Identifier: "Red" [32:12 - 32:15] DeclRefExpr=Red:11:14 +// CHECK: Punctuation: ";" [32:15 - 32:16] UnexposedStmt= + // RUN: c-index-test -test-annotate-tokens=%s:4:1:165:32 %s | FileCheck %s // RUN: c-index-test -test-annotate-tokens=%s:4:1:165:38 %s | FileCheck %s |