Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/giscanner/ast.py
diff options
context:
space:
mode:
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):