diff python/asmnodes.py @ 234:83781bd10fdb

wip
author Windel Bouwman
date Sun, 14 Jul 2013 19:29:21 +0200
parents 1c7364bd74c7
children
line wrap: on
line diff
--- a/python/asmnodes.py	Sun Jul 14 12:28:23 2013 +0200
+++ b/python/asmnodes.py	Sun Jul 14 19:29:21 2013 +0200
@@ -11,11 +11,6 @@
     def __repr__(self):
         return '{0}:'.format(self.name)
 
-class AComment(ANode):
-    def __init__(self, name):
-        self.txt = name
-    def __repr__(self):
-        return '; {}'.format(self.txt)
 
 class AInstruction(ANode):
     def __init__(self, mnemonic, operands):