summaryrefslogtreecommitdiff
path: root/giscanner/ast.py
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2009-03-28 10:07:37 -0400
committerColin Walters <walters@verbum.org>2009-08-24 15:19:28 -0400
commit7549c8053d0229a12d9196cc8abae54a01a555d0 (patch)
tree5bdc45428afe2bff2dae78b926f142a788c2129d /giscanner/ast.py
parent4ba8fa2f8a63bf658406f60e4d3a1f9cc5586ea4 (diff)
downloadgobject-introspection-7549c8053d0229a12d9196cc8abae54a01a555d0.tar.gz
Bug 556628 – (skip) annotation
Adds a (skip) option that can be added to the header of any doc comment to cause that symbol to be skipped in the .gir output
Diffstat (limited to 'giscanner/ast.py')
-rw-r--r--giscanner/ast.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index 911cc2bc..5e2a010d 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -152,6 +152,7 @@ class Node(object):
def __init__(self, name=None):
self.name = name
self.attributes = [] # (key, value)*
+ self.skip = False
self.deprecated = None
self.deprecated_version = None
self.version = None