Squash commits for public release
This commit is contained in:
8
utils/compilers/ConnectionCompiler/token.py
Normal file
8
utils/compilers/ConnectionCompiler/token.py
Normal file
@@ -0,0 +1,8 @@
|
||||
class Token:
|
||||
|
||||
def __init__(self, type=None, value=None):
|
||||
self.type = type
|
||||
self.value = value
|
||||
|
||||
def __str__(self):
|
||||
return "Token({0}, {1})".format(self.type, self.value)
|
||||
Reference in New Issue
Block a user