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): ...@@ -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.
......
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