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
715b0886
Commit
715b0886
authored
Feb 18, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Attribute name change from "type" to "rule".
parent
1162701b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
__init__.py
arpeggio/__init__.py
+17
-17
No files found.
arpeggio/__init__.py
View file @
715b0886
...
@@ -555,21 +555,21 @@ class ParseTreeNode(object):
...
@@ -555,21 +555,21 @@ class ParseTreeNode(object):
The node can be terminal(the leaf of the parse tree) or non-terminal.
The node can be terminal(the leaf of the parse tree) or non-terminal.
Attributes:
Attributes:
typ
e (str): The name of the rule that created this node or empty
rul
e (str): The name of the rule that created this node or empty
string in case this node is created by a non-root pexpression.
string in case this node is created by a non-root pexpression.
position (int): A position in the input stream where the match occurred.
position (int): A position in the input stream where the match occurred.
error (bool): Is this a false parse tree node created during error recovery.
error (bool): Is this a false parse tree node created during error recovery.
comments : A parse tree of comment(s) attached to this node.
comments : A parse tree of comment(s) attached to this node.
"""
"""
def
__init__
(
self
,
typ
e
,
position
,
error
):
def
__init__
(
self
,
rul
e
,
position
,
error
):
self
.
type
=
typ
e
self
.
rule
=
rul
e
self
.
position
=
position
self
.
position
=
position
self
.
error
=
error
self
.
error
=
error
self
.
comments
=
None
self
.
comments
=
None
@property
@property
def
name
(
self
):
def
name
(
self
):
return
"
%
s [
%
s]"
%
(
self
.
typ
e
,
self
.
position
)
return
"
%
s [
%
s]"
%
(
self
.
rul
e
,
self
.
position
)
class
Terminal
(
ParseTreeNode
):
class
Terminal
(
ParseTreeNode
):
...
@@ -577,21 +577,21 @@ class Terminal(ParseTreeNode):
...
@@ -577,21 +577,21 @@ class Terminal(ParseTreeNode):
Leaf node of the Parse Tree. Represents matched string.
Leaf node of the Parse Tree. Represents matched string.
Attributes:
Attributes:
typ
e (str): The name of the rule that created this terminal.
rul
e (str): The name of the rule that created this terminal.
position (int): A position in the input stream where match occurred.
position (int): A position in the input stream where match occurred.
value (str): Matched string at the given position or missing token
value (str): Matched string at the given position or missing token
name in the case of an error node.
name in the case of an error node.
"""
"""
def
__init__
(
self
,
typ
e
,
position
,
value
,
error
=
False
):
def
__init__
(
self
,
rul
e
,
position
,
value
,
error
=
False
):
super
(
Terminal
,
self
)
.
__init__
(
typ
e
,
position
,
error
)
super
(
Terminal
,
self
)
.
__init__
(
rul
e
,
position
,
error
)
self
.
value
=
value
self
.
value
=
value
@property
@property
def
desc
(
self
):
def
desc
(
self
):
if
self
.
value
:
if
self
.
value
:
return
"
%
s '
%
s' [
%
s]"
%
(
self
.
typ
e
,
self
.
value
,
self
.
position
)
return
"
%
s '
%
s' [
%
s]"
%
(
self
.
rul
e
,
self
.
value
,
self
.
position
)
else
:
else
:
return
"
%
s [
%
s]"
%
(
self
.
typ
e
,
self
.
position
)
return
"
%
s [
%
s]"
%
(
self
.
rul
e
,
self
.
position
)
def
__str__
(
self
):
def
__str__
(
self
):
return
self
.
value
return
self
.
value
...
@@ -611,8 +611,8 @@ class NonTerminal(ParseTreeNode, list):
...
@@ -611,8 +611,8 @@ class NonTerminal(ParseTreeNode, list):
nodes (list of ParseTreeNode): Children parse tree nodes.
nodes (list of ParseTreeNode): Children parse tree nodes.
"""
"""
def
__init__
(
self
,
typ
e
,
position
,
nodes
,
error
=
False
):
def
__init__
(
self
,
rul
e
,
position
,
nodes
,
error
=
False
):
super
(
NonTerminal
,
self
)
.
__init__
(
typ
e
,
position
,
error
)
super
(
NonTerminal
,
self
)
.
__init__
(
rul
e
,
position
,
error
)
self
.
extend
(
flatten
([
nodes
]))
self
.
extend
(
flatten
([
nodes
]))
# Child nodes cache. Used for lookup by rule name.
# Child nodes cache. Used for lookup by rule name.
...
@@ -645,7 +645,7 @@ class NonTerminal(ParseTreeNode, list):
...
@@ -645,7 +645,7 @@ class NonTerminal(ParseTreeNode, list):
# If not found in the cache find it and store it in the
# If not found in the cache find it and store it in the
# cache for later.
# cache for later.
for
n
in
self
:
for
n
in
self
:
if
n
.
typ
e
==
item
:
if
n
.
rul
e
==
item
:
self
.
_child_cache
[
item
]
=
n
self
.
_child_cache
[
item
]
=
n
return
n
return
n
...
@@ -746,13 +746,13 @@ class Parser(object):
...
@@ -746,13 +746,13 @@ class Parser(object):
for
n
in
node
:
for
n
in
node
:
nodes
.
append
(
tree_walk
(
n
))
nodes
.
append
(
tree_walk
(
n
))
if
node
.
typ
e
in
sem_actions
:
if
node
.
rul
e
in
sem_actions
:
retval
=
sem_actions
[
node
.
typ
e
]
.
first_pass
(
self
,
node
,
nodes
)
retval
=
sem_actions
[
node
.
rul
e
]
.
first_pass
(
self
,
node
,
nodes
)
if
hasattr
(
sem_actions
[
node
.
typ
e
],
"second_pass"
):
if
hasattr
(
sem_actions
[
node
.
rul
e
],
"second_pass"
):
for_second_pass
.
append
((
node
.
typ
e
,
retval
))
for_second_pass
.
append
((
node
.
rul
e
,
retval
))
else
:
else
:
if
isinstance
(
node
,
NonTerminal
):
if
isinstance
(
node
,
NonTerminal
):
retval
=
NonTerminal
(
node
.
typ
e
,
node
.
position
,
nodes
)
retval
=
NonTerminal
(
node
.
rul
e
,
node
.
position
,
nodes
)
else
:
else
:
retval
=
node
retval
=
node
...
...
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