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
Merge requests
!4
Chloe environment building
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Chloe environment building
chloe-environmentBuilding
into
master
Overview
0
Commits
2
Pipelines
0
Changes
5
Merged
Pui Yan Chloe Sham
requested to merge
chloe-environmentBuilding
into
master
5 years ago
Overview
0
Commits
2
Pipelines
0
Changes
5
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
62c0e242
2 commits,
5 years ago
5 files
+
97
−
39
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
AST.py
+
16
−
0
Options
@@ -11,6 +11,7 @@ class ASTNode():
@@ -11,6 +11,7 @@ class ASTNode():
# but we will keep it for easier debugging, since effeciency is not a concern here
# but we will keep it for easier debugging, since effeciency is not a concern here
def
__init__
(
self
,
parseTree
):
def
__init__
(
self
,
parseTree
):
self
.
parseTree
=
parseTree
self
.
parseTree
=
parseTree
self
.
children
=
[]
# Do certains actions on every node of the AST tree
# Do certains actions on every node of the AST tree
# call the same method in each class and its children recursively
# call the same method in each class and its children recursively
@@ -27,6 +28,21 @@ class ASTNode():
@@ -27,6 +28,21 @@ class ASTNode():
if
hasattr
(
c
,
'
recurseAction
'
):
if
hasattr
(
c
,
'
recurseAction
'
):
c
.
recurseAction
(
actionName
,
result
)
c
.
recurseAction
(
actionName
,
result
)
# This is a function to recursively build environment
# Modified from the function recurseAction above, to handle the proper linking of local variable environments
def
recurseBuildEnv
(
self
,
parentEnv
):
result
=
self
.
buildEnv
(
parentEnv
)
preVarDcl
=
None
for
c
in
self
.
children
:
if
c
and
hasattr
(
c
,
'
recurseBuildEnv
'
):
if
preVarDcl
:
c
.
recurseBuildEnv
(
preVarDcl
.
env
)
else
:
c
.
recurseBuildEnv
(
result
)
if
c
.
__class__
.
__name__
==
'
VarDclNode
'
:
preVarDcl
=
c
def
buildEnv
(
self
,
parentEnv
):
def
buildEnv
(
self
,
parentEnv
):
self
.
env
=
parentEnv
self
.
env
=
parentEnv
return
parentEnv
return
parentEnv
Loading