[gobject-introspection] Skip analysis of params that have been (skip)'d
- From: Stefan Walter <stefw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gobject-introspection] Skip analysis of params that have been (skip)'d
- Date: Thu, 29 Sep 2011 08:41:16 +0000 (UTC)
commit 9234ff4eac87a5b635a6f19fa12e081d628dcf61
Author: Stef Walter <stefw collabora co uk>
Date: Wed Sep 28 14:01:26 2011 +0200
Skip analysis of params that have been (skip)'d
Otherwise we get warnings for params that have been skipped
https://bugzilla.gnome.org/show_bug.cgi?id=660352
giscanner/introspectablepass.py | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/giscanner/introspectablepass.py b/giscanner/introspectablepass.py
index 95d54b0..77a0e4f 100644
--- a/giscanner/introspectablepass.py
+++ b/giscanner/introspectablepass.py
@@ -74,6 +74,9 @@ class IntrospectablePass(object):
else:
target = None
+ if node.skip:
+ return
+
if not node.type.resolved:
self._parameter_warning(parent, node,
"Unresolved type: %r" % (node.type.unresolved_string, ))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]