summaryrefslogtreecommitdiff
path: root/tests/scanner/annotationparser/gi/tag_deprecated.xml
blob: f1e8ca600b9c545b00a89003ffb351f1746e20c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?xml version="1.0" encoding="UTF-8"?>

<tests xmlns="http://schemas.gnome.org/gobject-introspection/2013/test">

<test>
  <input>/**
 * annotation_versioned:
 *
 * Deprecated: 0.6: Use something else instead
 **/</input>
  <parser>
    <docblock>
      <identifier>
        <name>annotation_versioned</name>
      </identifier>
      <tags>
        <tag>
          <name>deprecated</name>
          <value>0.6</value>
          <description>Use something else instead</description>
        </tag>
      </tags>
    </docblock>
  </parser>
  <output>/**
 * annotation_versioned:
 *
 * Deprecated: 0.6: Use something else instead
 */</output>
</test>

<test>
  <input>/**
 * annotation_versioned:
 *
 * Deprecated: 0.6
 **/</input>
  <parser>
    <docblock>
      <identifier>
        <name>annotation_versioned</name>
      </identifier>
      <tags>
        <tag>
          <name>deprecated</name>
          <value>0.6</value>
        </tag>
      </tags>
    </docblock>
  </parser>
  <output>/**
 * annotation_versioned:
 *
 * Deprecated: 0.6
 */</output>
</test>

<test>
  <input>/**
 * test_tag_not_annotatable:
 *
 * Tags (except Returns:) don't have annotations
 *
 * Deprecated: (allow-none): 2.24
 **/</input>
  <parser>
    <docblock>
      <identifier>
        <name>test_tag_not_annotatable</name>
      </identifier>
      <description>Tags (except Returns:) don't have annotations</description>
      <tags>
        <tag>
          <name>deprecated</name>
          <value>2.24</value>
        </tag>
      </tags>
    </docblock>
    <messages>
      <message>6: Error: Test: annotations not supported for tag "Deprecated:".</message>
    </messages>
  </parser>
  <output>/**
 * test_tag_not_annotatable:
 *
 * Tags (except Returns:) don't have annotations
 *
 * Deprecated: 2.24
 */</output>
</test>

<test>
  <!--
  Multiple "Deprecated:" tags
  -->
  <input>/**
 * test_multiple_tags:
 *
 * Deprecated: 3.0
 * Deprecated: 2.0
 **/</input>
  <parser>
    <docblock>
      <identifier>
        <name>test_multiple_tags</name>
      </identifier>
      <tags>
        <tag>
          <name>deprecated</name>
          <value>2.0</value>
        </tag>
      </tags>
    </docblock>
    <messages>
      <message>5: Error: Test: multiple "Deprecated:" tags for identifier "test_multiple_tags":
 * Deprecated: 2.0
   ^</message>
    </messages>
  </parser>
  <output>/**
 * test_multiple_tags:
 *
 * Deprecated: 2.0
 */</output>
</test>

</tests>