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
07519b00
Commit
07519b00
authored
Jun 30, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Special handling for EOF and some improvement in debuging logging.
parent
25a090d9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
4 deletions
+24
-4
__init__.py
arpeggio/__init__.py
+24
-4
No files found.
arpeggio/__init__.py
View file @
07519b00
...
@@ -485,6 +485,9 @@ class RegExMatch(Match):
...
@@ -485,6 +485,9 @@ class RegExMatch(Match):
else
:
else
:
self
.
regex
=
re
.
compile
(
to_match
)
self
.
regex
=
re
.
compile
(
to_match
)
def
__str__
(
self
):
return
self
.
to_match
def
_parse
(
self
,
parser
):
def
_parse
(
self
,
parser
):
c_pos
=
parser
.
position
c_pos
=
parser
.
position
m
=
self
.
regex
.
match
(
parser
.
input
[
c_pos
:])
m
=
self
.
regex
.
match
(
parser
.
input
[
c_pos
:])
...
@@ -706,8 +709,11 @@ class SemanticAction(object):
...
@@ -706,8 +709,11 @@ class SemanticAction(object):
This is the default implementation used if no semantic action is
This is the default implementation used if no semantic action is
defined.
defined.
"""
"""
retval
=
None
if
isinstance
(
node
,
Terminal
):
if
isinstance
(
node
,
Terminal
):
# Default for Terminal is to convert to string.
# Default for Terminal is to convert to string.
# EOF will return None
if
not
node
.
rule
==
'** EOF'
:
retval
=
str
(
node
)
retval
=
str
(
node
)
else
:
else
:
retval
=
node
retval
=
node
...
@@ -802,13 +808,18 @@ class Parser(object):
...
@@ -802,13 +808,18 @@ class Parser(object):
semantic actions and creating list of object that needs to be
semantic actions and creating list of object that needs to be
called in the second pass.
called in the second pass.
"""
"""
retval
=
None
if
self
.
debug
:
if
self
.
debug
:
print
(
"Walking down "
,
node
.
name
,
" type:"
,
print
(
"Walking down "
,
node
.
name
,
" type:"
,
type
(
node
),
"str:"
,
str
(
node
))
type
(
node
),
"str:"
,
str
(
node
))
children
=
[]
children
=
[]
if
isinstance
(
node
,
NonTerminal
):
if
isinstance
(
node
,
NonTerminal
):
for
n
in
node
:
for
n
in
node
:
children
.
append
(
tree_walk
(
n
))
child
=
tree_walk
(
n
)
if
child
is
not
None
:
children
.
append
(
child
)
if
self
.
debug
:
if
self
.
debug
:
print
(
"Visiting "
,
node
.
name
,
"= '"
,
str
(
node
),
print
(
"Visiting "
,
node
.
name
,
"= '"
,
str
(
node
),
...
@@ -818,14 +829,23 @@ class Parser(object):
...
@@ -818,14 +829,23 @@ class Parser(object):
print
(
"
\t
%
d:"
%
(
i
+
1
),
str
(
a
),
"type:"
,
type
(
a
))
print
(
"
\t
%
d:"
%
(
i
+
1
),
str
(
a
),
"type:"
,
type
(
a
))
if
node
.
rule
in
sem_actions
:
if
node
.
rule
in
sem_actions
:
retval
=
sem_actions
[
node
.
rule
]
.
first_pass
(
self
,
sem_action
=
sem_actions
[
node
.
rule
]
node
,
children
)
retval
=
sem_action
.
first_pass
(
self
,
node
,
children
)
if
hasattr
(
sem_actions
[
node
.
rule
],
"second_pass"
):
if
hasattr
(
sem_action
,
"second_pass"
):
for_second_pass
.
append
((
node
.
rule
,
retval
))
for_second_pass
.
append
((
node
.
rule
,
retval
))
if
self
.
debug
:
print
(
"
\t
Applying semantic action "
,
type
(
sem_action
))
else
:
else
:
# If no rule is present use some sane defaults
# If no rule is present use some sane defaults
if
self
.
debug
:
print
(
"
\t
Applying default semantic action."
)
if
isinstance
(
node
,
Terminal
):
if
isinstance
(
node
,
Terminal
):
# Convert Terminal node to str
# Convert Terminal node to str
if
not
node
.
rule
==
'** EOF'
:
retval
=
str
(
node
)
retval
=
str
(
node
)
elif
isinstance
(
node
,
NonTerminal
):
elif
isinstance
(
node
,
NonTerminal
):
retval
=
SemanticAction
()
.
first_pass
(
self
,
node
,
children
)
retval
=
SemanticAction
()
.
first_pass
(
self
,
node
,
children
)
...
...
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