Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
arpeggio-gm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
backend
arpeggio-gm
Commits
3eadb8fa
Commit
3eadb8fa
authored
Oct 12, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PEG modules refactored to use visitor pattern in semantic analysis
parent
c38397ff
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
__init__.py
arpeggio/__init__.py
+1
-0
cleanpeg.py
arpeggio/cleanpeg.py
+7
-6
peg.py
arpeggio/peg.py
+0
-0
No files found.
arpeggio/__init__.py
View file @
3eadb8fa
...
@@ -974,6 +974,7 @@ def visit_parse_tree(parse_tree, visitor):
...
@@ -974,6 +974,7 @@ def visit_parse_tree(parse_tree, visitor):
if
visitor
.
debug
:
if
visitor
.
debug
:
print
(
"ASG: First pass"
)
print
(
"ASG: First pass"
)
# Visit tree.
# Visit tree.
result
=
parse_tree
.
visit
(
visitor
)
result
=
parse_tree
.
visit
(
visitor
)
...
...
arpeggio/cleanpeg.py
View file @
3eadb8fa
...
@@ -13,7 +13,7 @@ from __future__ import print_function, unicode_literals
...
@@ -13,7 +13,7 @@ from __future__ import print_function, unicode_literals
from
arpeggio
import
*
from
arpeggio
import
*
from
arpeggio
import
RegExMatch
as
_
from
arpeggio
import
RegExMatch
as
_
from
.peg
import
sem_actions
from
.peg
import
PEGVisitor
from
.peg
import
ParserPEG
as
ParserPEGOrig
from
.peg
import
ParserPEG
as
ParserPEGOrig
__all__
=
[
'ParserPEG'
]
__all__
=
[
'ParserPEG'
]
...
@@ -49,13 +49,14 @@ def comment(): return _("#.*\n")
...
@@ -49,13 +49,14 @@ def comment(): return _("#.*\n")
class
ParserPEG
(
ParserPEGOrig
):
class
ParserPEG
(
ParserPEGOrig
):
def
_from_peg
(
self
,
language_def
):
def
_from_peg
(
self
,
language_def
):
parser
=
ParserPython
(
peggrammar
,
comment
,
reduce_tree
=
False
,
parser
=
ParserPython
(
peggrammar
,
comment
,
reduce_tree
=
False
,
debug
=
self
.
debug
)
debug
=
self
.
debug
)
parser
.
root_rule_name
=
self
.
root_rule_name
parser
.
root_rule_name
=
self
.
root_rule_name
parser
.
parse
(
language_def
)
parse_tree
=
parser
.
parse
(
language_def
)
# Initialise cross-ref counter
parser
.
_crossref_cnt
=
0
return
parser
.
getASG
(
sem_actions
=
sem_actions
)
# return parser.getASG(sem_actions=sem_actions)
return
visit_parse_tree
(
parse_tree
,
PEGVisitor
(
self
.
root_rule_name
,
self
.
ignore_case
,
debug
=
self
.
debug
))
arpeggio/peg.py
View file @
3eadb8fa
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment