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
1162701b
Commit
1162701b
authored
Feb 18, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NonTerminal inherits list now.
parent
c9fb4913
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
13 deletions
+13
-13
__init__.py
arpeggio/__init__.py
+8
-8
peg.py
arpeggio/peg.py
+3
-3
test_decorator_combine.py
tests/test_decorator_combine.py
+2
-2
No files found.
arpeggio/__init__.py
View file @
1162701b
...
...
@@ -603,7 +603,7 @@ class Terminal(ParseTreeNode):
return
str
(
self
)
==
str
(
other
)
class
NonTerminal
(
ParseTreeNode
):
class
NonTerminal
(
ParseTreeNode
,
list
):
"""
Non-leaf node of the Parse Tree. Represents language syntax construction.
...
...
@@ -613,7 +613,7 @@ class NonTerminal(ParseTreeNode):
"""
def
__init__
(
self
,
type
,
position
,
nodes
,
error
=
False
):
super
(
NonTerminal
,
self
)
.
__init__
(
type
,
position
,
error
)
self
.
nodes
=
flatten
([
nodes
]
)
self
.
extend
(
flatten
([
nodes
])
)
# Child nodes cache. Used for lookup by rule name.
self
.
_child_cache
=
{}
...
...
@@ -622,14 +622,14 @@ class NonTerminal(ParseTreeNode):
def
desc
(
self
):
return
self
.
name
def
__iter__
(
self
):
return
iter
(
self
.
nodes
)
#
def __iter__(self):
# return self
def
__str__
(
self
):
return
""
.
join
([
str
(
x
)
for
x
in
self
.
nodes
])
return
""
.
join
([
str
(
x
)
for
x
in
self
])
def
__repr__
(
self
):
return
"[
%
s ]"
%
", "
.
join
([
repr
(
x
)
for
x
in
self
.
nodes
])
return
"[
%
s ]"
%
", "
.
join
([
repr
(
x
)
for
x
in
self
])
def
__getattr__
(
self
,
item
):
"""
...
...
@@ -644,7 +644,7 @@ class NonTerminal(ParseTreeNode):
# If not found in the cache find it and store it in the
# cache for later.
for
n
in
self
.
nodes
:
for
n
in
self
:
if
n
.
type
==
item
:
self
.
_child_cache
[
item
]
=
n
return
n
...
...
@@ -743,7 +743,7 @@ class Parser(object):
"""
nodes
=
[]
if
isinstance
(
node
,
NonTerminal
):
for
n
in
node
.
nodes
:
for
n
in
node
:
nodes
.
append
(
tree_walk
(
n
))
if
node
.
type
in
sem_actions
:
...
...
arpeggio/peg.py
View file @
1162701b
...
...
@@ -23,7 +23,7 @@ def expression(): return [regex,(identifier, Not(LEFT_ARROW)),
(
OPEN
,
ordered_choice
,
CLOSE
),
literal
]
def
regex
():
return
"r
"
,
"
'"
,
_
(
r"(\\\'|[^\'])*"
),
"'"
def
regex
():
return
"r'"
,
_
(
r"(\\\'|[^\'])*"
),
"'"
def
identifier
():
return
_
(
r"[a-zA-Z_]([a-zA-Z_]|[0-9])*"
)
#def literal(): return [_(r"\'(\\\'|[^\'])*\'"),_(r'"[^"]*"')]
def
literal
():
return
_
(
r'(\'(\\\'|[^\'])*\')|("[^"]*")'
)
...
...
@@ -148,8 +148,8 @@ class SemIdentifier(SemanticAction):
class
SemRegEx
(
SemanticAction
):
def
first_pass
(
self
,
parser
,
node
,
nodes
):
if
parser
.
debug
:
print
"RegEx
%
s."
%
nodes
[
2
]
.
value
return
RegExMatch
(
nodes
[
2
]
.
value
)
print
"RegEx
%
s."
%
nodes
[
1
]
.
value
return
RegExMatch
(
nodes
[
1
]
.
value
)
class
SemLiteral
(
SemanticAction
):
def
first_pass
(
self
,
parser
,
node
,
nodes
):
...
...
tests/test_decorator_combine.py
View file @
1162701b
...
...
@@ -38,7 +38,7 @@ class TestDecoratorCombine(TestCase):
self
.
assertRaises
(
NoMatch
,
fail_nm
)
self
.
assertIsInstance
(
ptree1
,
NonTerminal
)
self
.
assertIsInstance
(
ptree1
.
nodes
[
0
],
Terminal
)
self
.
assertEqual
(
ptree1
.
nodes
[
0
]
.
value
,
"abbb"
)
self
.
assertIsInstance
(
ptree1
[
0
],
Terminal
)
self
.
assertEqual
(
ptree1
[
0
]
.
value
,
"abbb"
)
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