summaryrefslogtreecommitdiff
path: root/giscanner/girparser.py
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2012-08-29 06:06:55 -0300
committerJasper St. Pierre <jstpierre@mecheye.net>2012-08-29 15:00:32 -0300
commit4f6f32dcb1942063508fa002fd0bc83a362c96b6 (patch)
treee7a967f41e1173aec12b2ae8fdec084e0c0a57cd /giscanner/girparser.py
parent2081ad22888bb420b00d0799ca01ab2bff338d19 (diff)
downloadgobject-introspection-4f6f32dcb1942063508fa002fd0bc83a362c96b6.tar.gz
girparser: Track methods/constructors by symbol
In order to be able to linkify a constructor/method, we need to first track it by symbol. https://bugzilla.gnome.org/show_bug.cgi?id=682969
Diffstat (limited to 'giscanner/girparser.py')
-rw-r--r--giscanner/girparser.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/giscanner/girparser.py b/giscanner/girparser.py
index a59037da..eb53a3c4 100644
--- a/giscanner/girparser.py
+++ b/giscanner/girparser.py
@@ -353,6 +353,7 @@ class GIRParser(object):
self._parse_generic_attribs(node, func)
+ self._namespace.track(func)
return func
def _parse_fields(self, node):