diff python/c3/astnodes.py @ 249:e41e4109addd

Added current position arrow
author Windel Bouwman
date Fri, 26 Jul 2013 20:26:05 +0200
parents 88a1e0baef65
children 6ed3d3a82a63
line wrap: on
line diff
--- a/python/c3/astnodes.py	Fri Jul 26 16:46:02 2013 +0200
+++ b/python/c3/astnodes.py	Fri Jul 26 20:26:05 2013 +0200
@@ -242,6 +242,7 @@
 
 class CompoundStatement(Statement):
     def __init__(self, statements):
+        super().__init__(None)
         self.statements = statements
         for s in self.statements:
             assert isinstance(s, Statement)