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

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

<test>
  <input>/**
 * annotation_object_watch: (skip)
 * @object: A #AnnotationObject
 * @func: The callback
 * @user_data: The callback data
 *
 * This is here just for the sake of being overriden by its
 * annotation_object_watch_full().
 */</input>
  <parser>
    <docblock>
      <identifier>
        <name>annotation_object_watch</name>
        <annotations>
          <annotation>
            <name>skip</name>
          </annotation>
        </annotations>
      </identifier>
      <parameters>
        <parameter>
          <name>object</name>
          <description>A #AnnotationObject</description>
        </parameter>
        <parameter>
          <name>func</name>
          <description>The callback</description>
        </parameter>
        <parameter>
          <name>user_data</name>
          <description>The callback data</description>
        </parameter>
      </parameters>
      <description>This is here just for the sake of being overriden by its
annotation_object_watch_full().</description>
    </docblock>
  </parser>
  <output>/**
 * annotation_object_watch: (skip)
 * @object: A #AnnotationObject
 * @func: The callback
 * @user_data: The callback data
 *
 * This is here just for the sake of being overriden by its
 * annotation_object_watch_full().
 */</output>
</test>

<test>
  <input>/**
 * annotation_object_watch: (skip yes)
 *
 * This is here just for the sake of being overriden by its
 * annotation_object_watch_full().
 */</input>
  <parser>
    <docblock>
      <identifier>
        <name>annotation_object_watch</name>
        <annotations>
          <annotation>
            <name>skip</name>
            <options>
              <option>
                <name>yes</name>
              </option>
            </options>
          </annotation>
        </annotations>
      </identifier>
      <description>This is here just for the sake of being overriden by its
annotation_object_watch_full().</description>
    </docblock>
    <messages>
      <message>2: Warning: Test: "skip" annotation needs no options, 1 given</message>
    </messages>
  </parser>
  <output>/**
 * annotation_object_watch: (skip yes)
 *
 * This is here just for the sake of being overriden by its
 * annotation_object_watch_full().
 */</output>
</test>

</tests>