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
7fae479f
Commit
7fae479f
authored
Aug 10, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added more info to debug message in ParsingExpression
parent
836d1bfc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
__init__.py
arpeggio/__init__.py
+2
-2
No files found.
arpeggio/__init__.py
View file @
7fae479f
...
@@ -206,8 +206,8 @@ class ParsingExpression(object):
...
@@ -206,8 +206,8 @@ class ParsingExpression(object):
result
,
new_pos
=
self
.
result_cache
[
c_pos
]
result
,
new_pos
=
self
.
result_cache
[
c_pos
]
parser
.
position
=
new_pos
parser
.
position
=
new_pos
if
parser
.
debug
:
if
parser
.
debug
:
print
(
"** Cache hit for [{}, {}] = '{}'"
print
(
"** Cache hit for [{}, {}] = '{}'
: new_pos={}
"
.
format
(
self
.
name
,
c_pos
,
str
(
result
)))
.
format
(
self
.
name
,
c_pos
,
str
(
result
)
,
str
(
new_pos
)
))
print
(
"<< Leaving rule {}"
.
format
(
self
.
name
))
print
(
"<< Leaving rule {}"
.
format
(
self
.
name
))
# If NoMatch is recorded at this position raise.
# If NoMatch is recorded at this position raise.
...
...
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