diff options
author | Jasper St. Pierre <jstpierre@mecheye.net> | 2013-01-31 21:42:32 -0500 |
---|---|---|
committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2013-02-01 19:20:35 -0500 |
commit | 0f5f94ed8a86355003533452a2d6cc8077d27535 (patch) | |
tree | b3551d2692fe51336223659db0f886a01a032eed /giscanner/girwriter.py | |
parent | f027b6841164fc5c712236b3c40a90808e1b7428 (diff) | |
download | gobject-introspection-0f5f94ed8a86355003533452a2d6cc8077d27535.tar.gz |
giscanner: Apply standard annotations to constant values
While there's no particular reason I need to do this, there
really isn't any reason to not do this, and it helps with doctool
or whatever in the future if we want to document when a constant
showed up. g-ir-compiler also keeps track of constant deprecations,
so this fixes constants not ever being deprecated.
https://bugzilla.gnome.org/show_bug.cgi?id=693040
Diffstat (limited to 'giscanner/girwriter.py')
-rw-r--r-- | giscanner/girwriter.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/giscanner/girwriter.py b/giscanner/girwriter.py index 7344488b..e9910d47 100644 --- a/giscanner/girwriter.py +++ b/giscanner/girwriter.py @@ -370,7 +370,10 @@ and/or use gtk-doc annotations. ''') attrs = [('name', constant.name), ('value', constant.value), ('c:type', constant.ctype)] + self._append_version(constant, attrs) + self._append_node_generic(constant, attrs) with self.tagcontext('constant', attrs): + self._write_generic(constant) self._write_type(constant.value_type) def _write_class(self, node): |