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
45f1a26d
Commit
45f1a26d
authored
5 years ago
by
Xun Yang
Browse files
Options
Downloads
Patches
Plain Diff
init myType for declarations before type checking
parent
f251f078
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
LineNodes.py
+1
-1
1 addition, 1 deletion
LineNodes.py
MemberNodes.py
+1
-1
1 addition, 1 deletion
MemberNodes.py
TypeNodes.py
+2
-17
2 additions, 17 deletions
TypeNodes.py
with
4 additions
and
19 deletions
LineNodes.py
+
1
−
1
View file @
45f1a26d
...
...
@@ -108,6 +108,7 @@ class VarDclNode(ASTNode):
# Handling rule: variableInit expr
self
.
variableInit
=
makeNodeFromExpr
(
parseTree
.
children
[
3
].
children
[
0
],
typeName
)
self
.
myType
=
self
.
dclType
.
myType
self
.
children
.
append
(
self
.
dclType
)
self
.
children
.
append
(
self
.
variableInit
)
...
...
@@ -122,7 +123,6 @@ class VarDclNode(ASTNode):
return
self
.
env
def
checkType
(
self
):
self
.
myType
=
self
.
dclType
.
myType
if
self
.
variableInit
:
self
.
variableInit
.
checkType
()
if
not
self
.
myType
.
assignable
(
self
.
variableInit
.
myType
):
...
...
This diff is collapsed.
Click to expand it.
MemberNodes.py
+
1
−
1
View file @
45f1a26d
...
...
@@ -28,6 +28,7 @@ class FieldNode(ASTNode):
self
.
variableDcl
=
VarDclNode
(
node
,
self
.
typeName
)
self
.
name
=
self
.
variableDcl
.
name
self
.
myType
=
self
.
variableDcl
.
myType
self
.
children
.
append
(
self
.
variableDcl
)
...
...
@@ -36,7 +37,6 @@ class FieldNode(ASTNode):
def
checkType
(
self
):
self
.
variableDcl
.
checkType
()
self
.
myType
=
self
.
variableDcl
.
myType
###########################################################
...
...
This diff is collapsed.
Click to expand it.
TypeNodes.py
+
2
−
17
View file @
45f1a26d
...
...
@@ -143,7 +143,6 @@ class ClassInterNode(ASTNode):
print
(
i
.
name
)
def
checkType
(
self
):
self
.
myType
=
TypeStruct
(
self
.
canonName
,
self
)
for
c
in
self
.
children
:
if
c
and
hasattr
(
c
,
'
checkType
'
):
c
.
checkType
()
...
...
@@ -153,14 +152,6 @@ class ClassNode(ClassInterNode):
# always list all fields in the init method to show the class structure
def
__init__
(
self
,
parseTree
,
packageName
):
super
().
__init__
(
parseTree
,
packageName
)
# self.parseTree = parseTree
# self.packageName = packageName
# self.name = ''
# self.methods = []
# self.superInter = []
# self.env = None
# self.children = []
# self.canonName = self.packageName + '.' + self.name
self
.
fields
=
[]
self
.
constructors
=
[]
self
.
mods
=
[]
...
...
@@ -196,6 +187,7 @@ class ClassNode(ClassInterNode):
order
+=
1
self
.
canonName
=
self
.
packageName
+
'
.
'
+
self
.
name
self
.
myType
=
TypeStruct
(
self
.
canonName
,
self
)
self
.
children
+=
self
.
fields
+
self
.
methods
+
self
.
constructors
def
buildEnv
(
self
,
parentEnv
):
...
...
@@ -266,14 +258,6 @@ class InterNode(ClassInterNode):
# always list all fields in the init method to show the class structure
def
__init__
(
self
,
parseTree
,
packageName
):
super
().
__init__
(
parseTree
,
packageName
)
# self.parseTree = parseTree
# self.packageName = packageName
# self.name = ''
# self.methods = []
# self.superInter = []
# self.env = None
# self.children = []
# self.canonName = self.packageName + '.' + self.name
for
node
in
parseTree
.
children
:
if
node
.
name
==
'
ID
'
:
...
...
@@ -290,6 +274,7 @@ class InterNode(ClassInterNode):
self
.
methods
.
append
(
MethodNode
(
n
,
self
.
name
,
0
))
# order = 0 since no method body in interface needs to be checked
self
.
canonName
=
self
.
packageName
+
'
.
'
+
self
.
name
self
.
myType
=
TypeStruct
(
self
.
canonName
,
self
)
self
.
children
.
extend
(
self
.
methods
)
def
buildEnv
(
self
,
parentEnv
):
...
...
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