Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/giscanner/ast.py
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2009-02-26 21:52:42 (GMT)
committer Colin Walters <walters@verbum.org>2009-02-26 21:52:42 (GMT)
commitca21c1ce6f2fa9f8be9307121ce27a46cc9c0ed0 (patch)
treebe25649d977e3daa4d461a5359b7cef677c94975 /giscanner/ast.py
parente49a883d0997127cd3a0ad7e522666f30190e792 (diff)
Revert "Bug 557383 - Virtual function support"
This reverts commit 4470a24e8cf3827efaddcfe240c3271cf1a0d6c0. Needs more work as it turns out, we need to figure out the binding story.
Diffstat (limited to 'giscanner/ast.py')
-rw-r--r--giscanner/ast.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index 4bd674d..e708258 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -205,7 +205,6 @@ class Function(Node):
self.symbol = symbol
self.throws = not not throws
self.is_method = False
- self.is_virtual = False
self.doc = None
def get_parameter_index(self, name):
@@ -223,6 +222,11 @@ class Function(Node):
self.name, self.retval,
self.parameters)
+
+class VFunction(Function):
+ pass
+
+
class Type(Node):
def __init__(self, name, ctype=None):