diff options
author | David Zeuthen <davidz@redhat.com> | 2011-05-13 12:20:05 -0400 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2011-05-13 14:18:48 -0400 |
commit | 9c6797e0478b5025c3f2f37b1331c1328cf34f4d (patch) | |
tree | 21efe4e901211a20bf52037da529a8a490d27ab7 /girepository/girwriter.c | |
parent | b29b3ec7c9f4f9f6d979aff1bfc3dc6cb05970d2 (diff) | |
download | gobject-introspection-9c6797e0478b5025c3f2f37b1331c1328cf34f4d.tar.gz |
Add support for the (skip) annotation on parameters or return values
This was discussed in bug 649657.
https://bugzilla.gnome.org/show_bug.cgi?id=649657
Signed-off-by: David Zeuthen <davidz@redhat.com>
Diffstat (limited to 'girepository/girwriter.c')
-rw-r--r-- | girepository/girwriter.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/girepository/girwriter.c b/girepository/girwriter.c index e90799c1..f6ab34eb 100644 --- a/girepository/girwriter.c +++ b/girepository/girwriter.c @@ -482,6 +482,9 @@ write_callable_info (const gchar *namespace, if (g_callable_info_may_return_null (info)) xml_printf (file, " allow-none=\"1\""); + if (g_callable_info_skip_return (info)) + xml_printf (file, " skip=\"1\""); + write_return_value_attributes (file, info); write_type_info (namespace, type, file); @@ -545,6 +548,9 @@ write_callable_info (const gchar *namespace, if (g_arg_info_get_destroy (arg) >= 0) xml_printf (file, " destroy=\"%d\"", g_arg_info_get_destroy (arg)); + if (g_arg_info_is_skip (arg)) + xml_printf (file, " skip=\"1\""); + write_attributes (file, (GIBaseInfo*) arg); type = g_arg_info_get_type (arg); |