summaryrefslogtreecommitdiff
path: root/giscanner/introspectablepass.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-26 13:38:35 +0100
commita9f45431684e6be3623e272e54d481e4c5d9423d (patch)
tree8ea9fccc6314d57995555fa8969c39db57fe40c5 /giscanner/introspectablepass.py
parent07162e9064a0a64ee68826334d8ab2d5c25ff035 (diff)
downloadgobject-introspection-a9f45431684e6be3623e272e54d481e4c5d9423d.tar.gz
Add support for element-type to GListModel
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.
Diffstat (limited to 'giscanner/introspectablepass.py')
-rw-r--r--giscanner/introspectablepass.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/giscanner/introspectablepass.py b/giscanner/introspectablepass.py
index e2056b42..8ac50064 100644
--- a/giscanner/introspectablepass.py
+++ b/giscanner/introspectablepass.py
@@ -89,7 +89,8 @@ class IntrospectablePass(object):
return
if (isinstance(node.type, (ast.List, ast.Array))
- and node.type.element_type == ast.TYPE_ANY):
+ and node.type.element_type == ast.TYPE_ANY
+ and not (isinstance(node.type, ast.List) and node.type.name == 'Gio.ListModel')):
self._parameter_warning(parent, node, "Missing (element-type) annotation")
parent.introspectable = False
return