# 7. A class or interface must not declare two methods with the same signature (name and parameter types).
unique=[]
formethodinself.methods:
...
...
@@ -21,15 +21,15 @@ class ClassInterNode(ASTNode):
ifkeyinunique:
raiseException("ERROR: Class/Interface '{}' declares 2 methods with the same signature '{}'".format(self.name,key[0]))
unique.append(key)
# 6. The hierarchy must be acyclic
# 9. A class or interface must not contain (declare or inherit) two methods with the same signature but different return types
# 11. A nonstatic method must not replace a static method
# 13. A protected method must not replace a public method
# 14. A method must not replace a final method
returnself.getContains([])
defgetContains(self,hierarchy):
defgetContains(self,hierarchy):
# check if not acyclic
ifself.nameinhierarchy:
raiseException("ERROR: The hierarchy is not acyclic '{}', saw '{}'".format(hierarchy,self.name))
...
...
@@ -37,7 +37,7 @@ class ClassInterNode(ASTNode):
# get contains
contains=self.methods
forinterinself.superInter:
superContains=inter.getContains(hierarchy)
forconinsuperContains:
...
...
@@ -50,11 +50,14 @@ class ClassInterNode(ASTNode):
# protected must not replace public
if'protected'inmethod.modsand'public'incon.mods:
raiseException("ERROR: Protected method '{}' in class '{}' replaces public method '{}' in class {}".format(method.name,self.name,con.name,inter.name))
# 14. A method must not replace a final method
if'final'incon.mods:
raiseException("ERROR: Final method '{}' in class '{}' can't be overrided by method '{}' in class {}".format(method.name,self.name,con.name,inter.name))
conOverwritten=True
break
ifnotconOverwritten:
contains.append(con)
returncontains
# class
...
...
@@ -150,7 +153,7 @@ class ClassNode(ClassInterNode):
ifkeyinunique:
raiseException("ERROR: Class '{}' declares 2 constructors with the same parameter types".format(self.name))
unique.append(key)
# centralized point for overlapping class & interface logic
contains=super().checkHierarchy()
...
...
@@ -163,7 +166,7 @@ class ClassNode(ClassInterNode):