summaryrefslogtreecommitdiff
path: root/tests/scanner/annotationparser/gi/tag_since.xml
blob: a2dbb89ea53d591b4908b46d95f2d5ac7fbf5b07 (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
<?xml version="1.0" encoding="UTF-8"?>

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

<test>
  <input>/**
 * annotation_versioned:
 *
 * Since: 0.6
 **/</input>
  <parser>
    <docblock>
      <identifier>
        <name>annotation_versioned</name>
      </identifier>
      <tags>
        <tag>
          <name>since</name>
          <description>0.6</description>
        </tag>
      </tags>
    </docblock>
  </parser>
</test>

<test>
  <input>/**
 * annotation_versioned:
 *
 * Since: this function is available since version 0.6
 **/</input>
  <parser>
    <docblock>
      <identifier>
        <name>annotation_versioned</name>
      </identifier>
      <tags>
        <tag>
          <name>since</name>
          <description>this function is available since version 0.6</description>
        </tag>
      </tags>
    </docblock>
  </parser>
</test>

</tests>