summaryrefslogtreecommitdiffstats
path: root/src/front/symbol.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/front/symbol.py')
-rw-r--r--src/front/symbol.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/front/symbol.py b/src/front/symbol.py
deleted file mode 100644
index b93b778..0000000
--- a/src/front/symbol.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from type import DataType
-
-class Symbol(object):
- __slots__ = ['type', 'value']
-
- def __init__(self, value, type = DataType.INT):
- self.value = value
- self.type = type