diff python/c3/astnodes.py @ 155:b28a11c01dbe

Simplified IR classes
author Windel Bouwman
date Sun, 03 Mar 2013 13:20:03 +0100
parents 4ae0e02599de
children 9683a4cd848f
line wrap: on
line diff
--- a/python/c3/astnodes.py	Sat Mar 02 10:19:38 2013 +0100
+++ b/python/c3/astnodes.py	Sun Mar 03 13:20:03 2013 +0100
@@ -144,6 +144,9 @@
    def __repr__(self):
       return 'COMPOUND STATEMENT'
 
+class EmptyStatement(Node):
+   pass
+
 class ReturnStatement(Node):
    def __init__(self, expr):
       self.expr = expr