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, 1 insertions, 5 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index e708258..4bd674d 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -205,6 +205,7 @@ 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):
@@ -222,11 +223,6 @@ class Function(Node):
self.name, self.retval,
self.parameters)
-
-class VFunction(Function):
- pass
-
-
class Type(Node):
def __init__(self, name, ctype=None):