-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservusMain.py
40 lines (32 loc) · 1.07 KB
/
servusMain.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'''
TODO:
- Add the UMINUS token for negative numbers
'''
# from symbolTable import *
from servusLex import *
from servusYacc import *
from collections import deque
from servusInterpreter import *
import sys
# ------------------------ GLOBAL VARIABLES ------------------------------------
# servusSymbolTable = SymbolTable()
# newType = ""
# availOfTemps = []
# newVars = [] # List used for variable declaration
# arithmLogicOut = []
# ------------------------------------------------------------------------------
# ----------------------- HELPER FUNCTIONS -------------------------------------
def testParser():
result = parser.parse(testProgram)
# ------------------------------------------------------------------------------
programToExecute = "servusProgram2.py"
if len(sys.argv) > 1:
programToExecute = str(sys.argv[1])
testProgram_fileObj = open(programToExecute,'r')
testProgram = testProgram_fileObj.read()
testParser()
printIntermediateCode()
executeIntermediateCode()
# servusSymbolTable.displayTable()
# printServusSubroutines()
testProgram_fileObj.close()