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
df658e99
Commit
df658e99
authored
5 years ago
by
Xun Yang
Browse files
Options
Downloads
Plain Diff
merge master
parents
ae465edb
10185c2a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CompNode.py
+2
-2
2 additions, 2 deletions
CompNode.py
Test.py
+20
-7
20 additions, 7 deletions
Test.py
TypeNodes.py
+10
-7
10 additions, 7 deletions
TypeNodes.py
with
32 additions
and
16 deletions
CompNode.py
+
2
−
2
View file @
df658e99
...
@@ -26,9 +26,9 @@ class CompNode(ASTNode):
...
@@ -26,9 +26,9 @@ class CompNode(ASTNode):
typeNode
=
getParseTreeNodes
(
'
classDcl
'
,
node
)
typeNode
=
getParseTreeNodes
(
'
classDcl
'
,
node
)
if
not
typeNode
:
if
not
typeNode
:
typeNode
=
getParseTreeNodes
(
'
interfaceDcl
'
,
node
)
typeNode
=
getParseTreeNodes
(
'
interfaceDcl
'
,
node
)
self
.
typeDcl
=
InterNode
(
typeNode
[
0
])
self
.
typeDcl
=
InterNode
(
typeNode
[
0
]
,
self
.
packageName
)
else
:
else
:
self
.
typeDcl
=
ClassNode
(
typeNode
[
0
])
self
.
typeDcl
=
ClassNode
(
typeNode
[
0
]
,
self
.
packageName
)
# always populate the children list
# always populate the children list
self
.
children
.
append
(
self
.
typeDcl
)
self
.
children
.
append
(
self
.
typeDcl
)
...
...
This diff is collapsed.
Click to expand it.
Test.py
+
20
−
7
View file @
df658e99
...
@@ -38,29 +38,42 @@ def a2Multiple():
...
@@ -38,29 +38,42 @@ def a2Multiple():
# All files in the test directory
# All files in the test directory
testDirectory
=
"
./Tests/A2/
"
testDirectory
=
"
./Tests/A2/
"
testCases
=
[
f
.
path
for
f
in
scandir
(
testDirectory
)
if
f
.
is_dir
()]
testCases
=
[
f
.
path
for
f
in
scandir
(
testDirectory
)
if
f
.
is_dir
()]
testCases
+=
[
f
.
path
for
f
in
scandir
(
testDirectory
)
if
not
f
.
is_dir
()]
total
=
0
correct
=
0
for
c
in
testCases
:
for
c
in
testCases
:
# print("**********************************************************")
# print("DIRECTORY")
# print(c)
# print("**********************************************************")
# get all files from stdlib folder
# get all files from stdlib folder
testFiles
=
[
join
(
dp
,
f
)
for
dp
,
dn
,
filenames
in
walk
(
'
stdlib/2.0/java/
'
)
for
f
in
filenames
]
testFiles
=
[
join
(
dp
,
f
)
for
dp
,
dn
,
filenames
in
walk
(
'
stdlib/2.0/java/
'
)
for
f
in
filenames
]
# get all files in the folder recursively
testFiles
+=
[
join
(
dp
,
f
)
for
dp
,
dn
,
filenames
in
walk
(
c
)
for
f
in
filenames
]
if
'
.java
'
in
c
:
# add this one file
testFiles
.
append
(
c
)
else
:
# get all files in the folder recursively
testFiles
+=
[
join
(
dp
,
f
)
for
dp
,
dn
,
filenames
in
walk
(
c
)
for
f
in
filenames
]
ret
=
run
(
testFiles
)
ret
=
run
(
testFiles
)
total
+=
1
if
ret
==
""
:
if
ret
==
""
:
# print(c)
# print(c)
if
'
Je_
'
in
c
:
if
'
Je_
'
in
c
:
print
(
c
)
print
(
c
)
print
(
"
JE Passed without error
"
)
print
(
"
JE Passed without error
"
)
print
(
"
**********************************************************
"
)
print
(
"
**********************************************************
"
)
else
:
correct
+=
1
else
:
else
:
if
not
'
Je_
'
in
c
:
if
not
'
Je_
'
in
c
:
print
(
c
)
print
(
c
)
print
(
ret
)
print
(
ret
)
print
(
"
**********************************************************
"
)
print
(
"
**********************************************************
"
)
# print("\n \n\n ")
else
:
correct
+=
1
print
(
"
\n
SCORE: {} / {} -> {}%
"
.
format
(
correct
,
total
,
(
correct
/
total
)
*
100
))
...
...
This diff is collapsed.
Click to expand it.
TypeNodes.py
+
10
−
7
View file @
df658e99
...
@@ -31,15 +31,15 @@ class ClassInterNode(ASTNode):
...
@@ -31,15 +31,15 @@ class ClassInterNode(ASTNode):
def
getContains
(
self
,
hierarchy
):
def
getContains
(
self
,
hierarchy
):
# check if not acyclic
# check if not acyclic
if
self
.
name
in
hierarchy
:
canonName
=
self
.
packageName
+
'
.
'
+
self
.
name
raise
Exception
(
"
ERROR: The hierarchy is not acyclic
'
{}
'
, saw
'
{}
'"
.
format
(
hierarchy
,
self
.
name
))
if
canonName
in
hierarchy
:
hierarchy
.
append
(
self
.
n
ame
)
raise
Exception
(
"
ERROR: The hierarchy is not acyclic
'
{}
'
, saw
'
{}
'"
.
format
(
hierarchy
,
canonN
ame
)
)
# get contains
# get contains
contains
=
self
.
methods
contains
=
self
.
methods
for
inter
in
self
.
superInter
:
for
inter
in
self
.
superInter
:
superContains
=
inter
.
getContains
(
hierarchy
)
superContains
=
inter
.
getContains
(
hierarchy
+
[
canonName
]
)
for
con
in
superContains
:
for
con
in
superContains
:
conOverwritten
=
False
conOverwritten
=
False
for
method
in
self
.
methods
:
for
method
in
self
.
methods
:
...
@@ -63,8 +63,9 @@ class ClassInterNode(ASTNode):
...
@@ -63,8 +63,9 @@ class ClassInterNode(ASTNode):
# class
# class
class
ClassNode
(
ClassInterNode
):
class
ClassNode
(
ClassInterNode
):
# always list all fields in the init method to show the class structure
# always list all fields in the init method to show the class structure
def
__init__
(
self
,
parseTree
):
def
__init__
(
self
,
parseTree
,
packageName
):
self
.
parseTree
=
parseTree
self
.
parseTree
=
parseTree
self
.
packageName
=
packageName
self
.
name
=
''
self
.
name
=
''
self
.
fields
=
[]
self
.
fields
=
[]
self
.
methods
=
[]
self
.
methods
=
[]
...
@@ -166,11 +167,12 @@ class ClassNode(ClassInterNode):
...
@@ -166,11 +167,12 @@ class ClassNode(ClassInterNode):
def
getContains
(
self
,
hierarchy
):
def
getContains
(
self
,
hierarchy
):
# centralized logic
# centralized logic
contains
=
super
().
getContains
(
hierarchy
)
contains
=
super
().
getContains
(
hierarchy
)
canonName
=
self
.
packageName
+
'
.
'
+
self
.
name
# get contains from extends class
# get contains from extends class
if
self
.
superClass
:
if
self
.
superClass
:
addToContains
=
[]
addToContains
=
[]
superContains
=
self
.
superClass
.
getContains
(
hierarchy
)
superContains
=
self
.
superClass
.
getContains
(
hierarchy
+
[
canonName
]
)
for
con
in
superContains
:
for
con
in
superContains
:
conOverwritten
=
False
conOverwritten
=
False
for
method
in
contains
:
for
method
in
contains
:
...
@@ -203,8 +205,9 @@ class ClassNode(ClassInterNode):
...
@@ -203,8 +205,9 @@ class ClassNode(ClassInterNode):
# interface
# interface
class
InterNode
(
ClassInterNode
):
class
InterNode
(
ClassInterNode
):
# always list all fields in the init method to show the class structure
# always list all fields in the init method to show the class structure
def
__init__
(
self
,
parseTree
):
def
__init__
(
self
,
parseTree
,
packageName
):
self
.
parseTree
=
parseTree
self
.
parseTree
=
parseTree
self
.
packageName
=
packageName
self
.
name
=
''
self
.
name
=
''
self
.
methods
=
[]
self
.
methods
=
[]
self
.
superInter
=
[]
# list of strings of extendInterface's name, then stores a pointer to the node after type linking
self
.
superInter
=
[]
# list of strings of extendInterface's name, then stores a pointer to the node after type linking
...
...
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