Commit 7fae479f authored by Igor Dejanovic's avatar Igor Dejanovic

Added more info to debug message in ParsingExpression

parent 836d1bfc
......@@ -206,8 +206,8 @@ class ParsingExpression(object):
result, new_pos = self.result_cache[c_pos]
parser.position = new_pos
if parser.debug:
print("** Cache hit for [{}, {}] = '{}'"
.format(self.name, c_pos, str(result)))
print("** Cache hit for [{}, {}] = '{}' : new_pos={}"
.format(self.name, c_pos, str(result), str(new_pos)))
print("<< Leaving rule {}".format(self.name))
# If NoMatch is recorded at this position raise.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment