Skip to content
Snippets Groups Projects
Commit 592614d8 authored by Nicholas Robinson's avatar Nicholas Robinson
Browse files

comments & prints

parent 0225b868
No related branches found
No related tags found
No related merge requests found
...@@ -94,6 +94,7 @@ def run(testFiles): ...@@ -94,6 +94,7 @@ def run(testFiles):
# Error in Parsing # Error in Parsing
if tree is None: if tree is None:
# print(f)
print("ERROR in Parsing: " + error.args[0]) print("ERROR in Parsing: " + error.args[0])
# for n in error.args[1]: # the parse tree # for n in error.args[1]: # the parse tree
# print(n) # print(n)
...@@ -117,11 +118,12 @@ def run(testFiles): ...@@ -117,11 +118,12 @@ def run(testFiles):
try: try:
buildEnvAndLink(ASTs) buildEnvAndLink(ASTs)
except Exception as e: except Exception as e:
# print(testFiles)
print("error at environment building and linking") print("error at environment building and linking")
print(e) print(e)
return return
print("<<<<------- after buildEnvAndLink -------->>>>>>") # print("<<<<------- after buildEnvAndLink -------->>>>>>")
# for (n, t) in ASTs: # for (n, t) in ASTs:
# print(n) # print(n)
# print("--------------------") # print("--------------------")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment