[cfe-commits] r98078 - /cfe/trunk/test/Index/annotate-tokens.m

Douglas Gregor dgregor at apple.com
Tue Mar 9 12:57:01 PST 2010


Author: dgregor
Date: Tue Mar  9 14:57:01 2010
New Revision: 98078

URL: http://llvm.org/viewvc/llvm-project?rev=98078&view=rev
Log:
Improve Objective-C token-annotation test

Modified:
    cfe/trunk/test/Index/annotate-tokens.m

Modified: cfe/trunk/test/Index/annotate-tokens.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/annotate-tokens.m?rev=98078&r1=98077&r2=98078&view=diff
==============================================================================
--- cfe/trunk/test/Index/annotate-tokens.m (original)
+++ cfe/trunk/test/Index/annotate-tokens.m Tue Mar  9 14:57:01 2010
@@ -2,7 +2,13 @@
 - (int)compare:(Foo*)other;
 @end
 
-// RUN: c-index-test -test-annotate-tokens=%s:1:1:3:5 %s | FileCheck %s
+ at implementation Foo
+- (int)compare:(Foo*)other {
+  return 0;
+}
+ at end
+
+// RUN: c-index-test -test-annotate-tokens=%s:1:1:9:5 %s | FileCheck %s
 // CHECK: Punctuation: "@" [1:1 - 1:2]
 // CHECK: Identifier: "interface" [1:2 - 1:11]
 // CHECK: Identifier: "Foo" [1:12 - 1:15] ObjCInterfaceDecl=Foo:1:12
@@ -20,3 +26,24 @@
 // CHECK: Punctuation: ";" [2:27 - 2:28]
 // CHECK: Punctuation: "@" [3:1 - 3:2]
 // CHECK: Identifier: "end" [3:2 - 3:5]
+// CHECK: Punctuation: "@" [5:1 - 5:2] ObjCImplementationDecl=Foo:5:1 (Definition)
+// CHECK: Identifier: "implementation" [5:2 - 5:16]
+// CHECK: Identifier: "Foo" [5:17 - 5:20]
+// CHECK: Punctuation: "-" [6:1 - 6:2] ObjCInstanceMethodDecl=compare::6:1 (Definition)
+// CHECK: Punctuation: "(" [6:3 - 6:4]
+// CHECK: Keyword: "int" [6:4 - 6:7]
+// CHECK: Punctuation: ")" [6:7 - 6:8]
+// CHECK: Identifier: "compare" [6:8 - 6:15]
+// CHECK: Punctuation: ":" [6:15 - 6:16]
+// CHECK: Punctuation: "(" [6:16 - 6:17]
+// CHECK: Identifier: "Foo" [6:17 - 6:20] ObjCClassRef=Foo:1:12
+// CHECK: Punctuation: "*" [6:20 - 6:21]
+// CHECK: Punctuation: ")" [6:21 - 6:22]
+// CHECK: Identifier: "other" [6:22 - 6:27] ParmDecl=other:6:22 (Definition)
+// CHECK: Punctuation: "{" [6:28 - 6:29]
+// CHECK: Keyword: "return" [7:3 - 7:9]
+// CHECK: Literal: "0" [7:10 - 7:11]
+// CHECK: Punctuation: ";" [7:11 - 7:12]
+// CHECK: Punctuation: "}" [8:1 - 8:2]
+// CHECK: Punctuation: "@" [9:1 - 9:2]
+// CHECK: Identifier: "end" [9:2 - 9:5]





More information about the cfe-commits mailing list