summaryrefslogtreecommitdiff
path: root/giscanner/girwriter.py
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2020-04-26 13:17:15 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2020-04-28 12:09:54 +0100
commitf1e14a68ef3c056fab85ee43f331c1fa8b40b932 (patch)
tree215afdf962fb072991843440941478e674991172 /giscanner/girwriter.py
parentbb364bd25d50215b0c40d98ba5ecf2aa779e53a2 (diff)
downloadgobject-introspection-issue-328.tar.gz
Add support for element-type to GListModelissue-328
GListModel is an interface for creating typed, list-like containers. The data stored is GObject instances, but it's useful to be able to annotate the actual type, for both documentation and code generation purposes. The annotation should be optional, to maintain backward compatibility. Fixes: #328
Diffstat (limited to 'giscanner/girwriter.py')
-rw-r--r--giscanner/girwriter.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/giscanner/girwriter.py b/giscanner/girwriter.py
index d1333cb7..6eff6526 100644
--- a/giscanner/girwriter.py
+++ b/giscanner/girwriter.py
@@ -378,10 +378,15 @@ class GIRWriter(XMLWriter):
with self.tagcontext('array', attrs):
self._write_type(ntype.element_type)
elif isinstance(ntype, ast.List):
- if ntype.name:
+ # GListModel element-type annotations are not mandatory
+ if ntype.name in ('Gio.ListModel', 'GListModel') and ntype.element_type is ast.TYPE_ANY:
attrs.insert(0, ('name', ntype.name))
- with self.tagcontext('type', attrs):
- self._write_type(ntype.element_type)
+ self.write_tag('type', attrs)
+ else:
+ if ntype.name:
+ attrs.insert(0, ('name', ntype.name))
+ with self.tagcontext('type', attrs):
+ self._write_type(ntype.element_type)
elif isinstance(ntype, ast.Map):
attrs.insert(0, ('name', 'GLib.HashTable'))
with self.tagcontext('type', attrs):