summaryrefslogtreecommitdiff
path: root/giscanner/ast.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2011-08-13 14:42:05 -0300
committerJohan Dahlin <jdahlin@litl.com>2011-08-13 14:42:05 -0300
commite6ff50d62ce10c9faec56f7401a5801015ed286b (patch)
tree498d3213ee4ff25c08109b495af6c11ab9188a70 /giscanner/ast.py
parent81abc2eb63317003a11d1484e84698a37e8ec035 (diff)
parentc3a1333790dd1c25c2e19b80be84f6c8a84c91d6 (diff)
downloadgobject-introspection-e6ff50d62ce10c9faec56f7401a5801015ed286b.tar.gz
Merge remote-tracking branch 'origin/gir-docbook'
Conflicts: .gitignore tests/scanner/Regress-1.0-expected.gir
Diffstat (limited to 'giscanner/ast.py')
-rw-r--r--giscanner/ast.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index d63fdb88..1433422c 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -592,6 +592,13 @@ class ErrorQuarkFunction(Function):
self.error_domain = error_domain
+class ErrorQuarkFunction(Function):
+
+ def __init__(self, name, retval, parameters, throws, symbol, error_domain):
+ Function.__init__(self, name, retval, parameters, throws, symbol)
+ self.error_domain = error_domain
+
+
class VFunction(Callable):
def __init__(self, name, retval, parameters, throws):