Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cs444
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xun Yang
cs444
Commits
86e39ea6
"...ist-git@git.uwaterloo.ca:ehdykhne/nuplan-devkit.git" did not exist on "3a4dba5fc6bab7319fb2855eb9d9867eb17336b3"
Commit
86e39ea6
authored
5 years ago
by
Nicholas Robinson
Browse files
Options
Downloads
Patches
Plain Diff
set self.contains in super checkHierarchy
parent
84cccef3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
TypeNodes.py
+6
-8
6 additions, 8 deletions
TypeNodes.py
with
6 additions
and
8 deletions
TypeNodes.py
+
6
−
8
View file @
86e39ea6
...
@@ -40,7 +40,7 @@ class ClassInterNode(ASTNode):
...
@@ -40,7 +40,7 @@ class ClassInterNode(ASTNode):
# 9. A class or interface must not contain (declare or inherit) two methods with the same signature but different return types
# 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
# 11. A nonstatic method must not replace a static method
# 13. A protected method must not replace a public method
# 13. A protected method must not replace a public method
return
self
.
getContains
([])
self
.
contains
=
self
.
getContains
([])
def
getContains
(
self
,
hierarchy
):
def
getContains
(
self
,
hierarchy
):
# check if not acyclic
# check if not acyclic
...
@@ -176,17 +176,15 @@ class ClassNode(ClassInterNode):
...
@@ -176,17 +176,15 @@ class ClassNode(ClassInterNode):
raise
Exception
(
"
ERROR: Class
'
{}
'
declares 2 constructors with the same parameter types
"
.
format
(
self
.
name
))
raise
Exception
(
"
ERROR: Class
'
{}
'
declares 2 constructors with the same parameter types
"
.
format
(
self
.
name
))
unique
.
append
(
key
)
unique
.
append
(
key
)
# centralized point for overlapping class & interface logic
# centralized point for overlapping class & interface logic
. Also sets self.contains
contains
=
super
().
checkHierarchy
()
super
().
checkHierarchy
()
# 10. A class that contains (declares or inherits) any abstract methods must be abstract.
# 10. A class that contains (declares or inherits) any abstract methods must be abstract.
for
con
in
contains
:
for
con
in
self
.
contains
:
if
'
abstract
'
in
con
.
mods
and
(
not
(
'
abstract
'
in
self
.
mods
)):
if
'
abstract
'
in
con
.
mods
and
(
not
(
'
abstract
'
in
self
.
mods
)):
raise
Exception
(
"
ERROR: Non-abstract Class
'
{}
'
contains an abstract method
"
.
format
(
self
.
name
))
raise
Exception
(
"
ERROR: Non-abstract Class
'
{}
'
contains an abstract method
"
.
format
(
self
.
name
))
if
(
not
con
.
body
)
and
(
not
(
'
native
'
in
con
.
mods
))
and
(
not
(
'
abstract
'
in
self
.
mods
))
and
(
not
(
con
in
self
.
constructors
)):
if
(
not
con
.
body
)
and
(
not
(
'
native
'
in
con
.
mods
))
and
(
not
(
'
abstract
'
in
self
.
mods
))
and
(
not
(
con
in
self
.
constructors
)):
raise
Exception
(
"
ERROR: Non-abstract Class
'
{}
'
contains an abstract method {}
"
.
format
(
self
.
name
,
con
.
name
))
raise
Exception
(
"
ERROR: Non-abstract Class
'
{}
'
contains an abstract method {}
"
.
format
(
self
.
name
,
con
.
name
))
self
.
contains
=
contains
# hierarchy: string[]
# hierarchy: string[]
def
getContains
(
self
,
hierarchy
):
def
getContains
(
self
,
hierarchy
):
...
@@ -290,8 +288,8 @@ class InterNode(ClassInterNode):
...
@@ -290,8 +288,8 @@ class InterNode(ClassInterNode):
raise
Exception
(
"
ERROR: Interface
'
{}
'
extends duplicate interfaces
'
{}
'"
.
format
(
self
.
name
,
inter
.
name
))
raise
Exception
(
"
ERROR: Interface
'
{}
'
extends duplicate interfaces
'
{}
'"
.
format
(
self
.
name
,
inter
.
name
))
unique
.
append
(
inter
.
name
)
unique
.
append
(
inter
.
name
)
# centralized point for overlapping class & interface logic
# centralized point for overlapping class & interface logic
. Also sets self.contains
self
.
contains
=
super
().
checkHierarchy
()
super
().
checkHierarchy
()
# hierarchy: string[]
# hierarchy: string[]
def
getContains
(
self
,
hierarchy
):
def
getContains
(
self
,
hierarchy
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment