projects
/
platform
/
upstream
/
gobject-introspection.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d29bc4e
)
scanner: Also traverse GObject properties when walking namespace
author
Colin Walters
<walters@verbum.org>
Sun, 24 Feb 2013 14:49:28 +0000
(09:49 -0500)
committer
Colin Walters
<walters@verbum.org>
Tue, 26 Feb 2013 21:25:10 +0000
(16:25 -0500)
This could be done manually by the caller, but it's better if we're
consistent here, since we do traverse fields.
https://bugzilla.gnome.org/show_bug.cgi?id=694593
giscanner/ast.py
patch
|
blob
|
history
diff --git
a/giscanner/ast.py
b/giscanner/ast.py
index c2f89a620fb0a91b0dc1efea864dabc06fb4de33..09616f65bb4c54c2bcbdc73f7c07397200e4210e 100644
(file)
--- a/
giscanner/ast.py
+++ b/
giscanner/ast.py
@@
-1020,6
+1020,8
@@
class Class(Node, Registered):
field.anonymous_node.walk(callback, chain)
for sig in self.signals:
sig.walk(callback, chain)
+ for prop in self.properties:
+ prop.walk(callback, chain)
class Interface(Node, Registered):