1 | // RUN: c-index-test -test-load-source all %s | FileCheck %s |
2 | |
3 | class Test { |
4 | public: |
5 | __attribute__((annotate("spiffy_method"))) void aMethod(); |
6 | |
7 | public __attribute__((annotate("works"))): |
8 | void anotherMethod(); // annotation attribute should be propagated. |
9 | |
10 | private __attribute__((annotate("investigations"))): |
11 | //propagated annotation should have changed from "works" to "investigations" |
12 | void inlineMethod() {} |
13 | |
14 | protected: |
15 | // attribute propagation should have stopped here |
16 | void methodWithoutAttribute(); |
17 | }; |
18 | |
19 | template <typename T> |
20 | class __attribute__((annotate("works"))) TemplateTest {}; |
21 | |
22 | template <typename T> |
23 | int templateFunction(T value) __attribute__((annotate("works"))); |
24 | |
25 | // CHECK: ClassDecl=Test:3:7 (Definition) Extent=[3:1 - 17:2] |
26 | // CHECK-NEXT: CXXAccessSpecifier=:4:1 (Definition) Extent=[4:1 - 4:8] |
27 | // CHECK-NEXT: CXXMethod=aMethod:5:51 Extent=[5:3 - 5:60] |
28 | // CHECK-NEXT: attribute(annotate)=spiffy_method Extent=[5:18 - 5:43] |
29 | // CHECK-NEXT: CXXAccessSpecifier=:7:1 (Definition) Extent=[7:1 - 7:43] |
30 | // CHECK-NEXT: attribute(annotate)=works Extent=[7:23 - 7:40] |
31 | // CHECK-NEXT: CXXMethod=anotherMethod:8:8 Extent=[8:3 - 8:23] |
32 | // CHECK-NEXT: attribute(annotate)=works Extent=[7:23 - 7:40] |
33 | // CHECK-NEXT: CXXAccessSpecifier=:10:1 (Definition) Extent=[10:1 - 10:53] |
34 | // CHECK-NEXT: attribute(annotate)=investigations Extent=[10:24 - 10:50] |
35 | // CHECK-NEXT: CXXMethod=inlineMethod:12:8 (Definition) Extent=[12:3 - 12:25] |
36 | // CHECK-NEXT: attribute(annotate)=investigations Extent=[10:24 - 10:50] |
37 | // CHECK-NEXT: CompoundStmt= Extent=[12:23 - 12:25] |
38 | // CHECK-NEXT: CXXAccessSpecifier=:14:1 (Definition) Extent=[14:1 - 14:11] |
39 | // CHECK-NEXT: CXXMethod=methodWithoutAttribute:16:8 Extent=[16:3 - 16:32] |
40 | // CHECK: ClassTemplate=TemplateTest:20:42 (Definition) Extent=[19:1 - 20:57] |
41 | // CHECK-NEXT: TemplateTypeParameter=T:19:20 (Definition) Extent=[19:11 - 19:21] [access=public] |
42 | // CHECK-NEXT: attribute(annotate)=works Extent=[20:22 - 20:39] |
43 | // CHECK: FunctionTemplate=templateFunction:23:5 Extent=[22:1 - 23:65] |
44 | // CHECK-NEXT: TemplateTypeParameter=T:22:20 (Definition) Extent=[22:11 - 22:21] [access=public] |
45 | // CHECK-NEXT: attribute(annotate)=works Extent=[23:46 - 23:63] |
46 | |