Skip to content
Snippets Groups Projects
Commit 945ccaba authored by Xun Yang's avatar Xun Yang
Browse files

Merge branch 'master' of git.uwaterloo.ca:x299yang/cs444

parents afbba9da cb1b222a
No related branches found
No related tags found
No related merge requests found
...@@ -94,8 +94,8 @@ def run(testFiles): ...@@ -94,8 +94,8 @@ def run(testFiles):
print(f) print(f)
print("ERROR in Scanning: " + error) print("ERROR in Scanning: " + error)
print("**********************************************************") print("**********************************************************")
continue return "ERROR in scanning"
# s = "All Tokens: " # s = "All Tokens: "
# for token in tokens: # for token in tokens:
# if (token.name and token.lex): # if (token.name and token.lex):
...@@ -110,7 +110,7 @@ def run(testFiles): ...@@ -110,7 +110,7 @@ def run(testFiles):
print("ERROR in Weeding after Scanning:") print("ERROR in Weeding after Scanning:")
print(weeds) print(weeds)
print("**********************************************************") print("**********************************************************")
continue return "ERROR in weeding"
# Parsing # Parsing
tree = None tree = None
...@@ -127,7 +127,7 @@ def run(testFiles): ...@@ -127,7 +127,7 @@ def run(testFiles):
# for n in error.args[1]: # the parse tree # for n in error.args[1]: # the parse tree
# print(n) # print(n)
print("**********************************************************") print("**********************************************************")
continue return "ERROR in parsing"
parseTrees.append((f, tree)) parseTrees.append((f, tree))
......
...@@ -251,10 +251,16 @@ class ClassNode(ClassInterNode): ...@@ -251,10 +251,16 @@ class ClassNode(ClassInterNode):
# overlapping class/interface logic # overlapping class/interface logic
super().checkHierarchy() super().checkHierarchy()
def getConstructor(self, argTypes):
for c in self.constructors: def checkType(self):
if c.paramTypes == argTypes: super().checkType()
return c
# Checking if constructor's name is the same as class name
for constructor in self.constructors:
if not self.name == constructor.name:
raise Exception("ERROR: Constructor {0} doesn't have the same name as class {1}".format(constructor.name, self.name))
return
##################################################################### #####################################################################
# interface # interface
......
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