Reintroduce binary type in express parser

This commit is contained in:
Thomas Krijnen
2015-05-21 12:53:17 +00:00
parent 37d4e9bcbd
commit 3d6b330366
4 changed files with 13 additions and 3 deletions
+7
View File
@@ -145,6 +145,13 @@ class DerivedAttribute(Node):
return str(self.name)
class BinaryType(Node):
def init(self):
pass
def __repr__(self):
return "binary"
class BoundSpecification(Node):
lower = property(lambda self: self.tokens[1])
upper = property(lambda self: self.tokens[3])