BuildScript/scripts/parser/token.py

5 lines
95 B
Python

class Token():
def __init__(self, content, type):
self.content = content
self.type = type