Commit ab924aea authored by Igor Dejanovic's avatar Igor Dejanovic

Fix in regex rule naming.

parent ff9ad67a
...@@ -125,7 +125,7 @@ class ParsingExpression(object): ...@@ -125,7 +125,7 @@ class ParsingExpression(object):
@property @property
def name(self): def name(self):
if self.root: if self.root:
return "%s(%s)" % (self.rule, self.__class__.__name__) return "%s=%s" % (self.rule, self.__class__.__name__)
else: else:
return self.__class__.__name__ return self.__class__.__name__
...@@ -462,7 +462,7 @@ class Match(ParsingExpression): ...@@ -462,7 +462,7 @@ class Match(ParsingExpression):
Base class for all classes that will try to match something from the input. Base class for all classes that will try to match something from the input.
""" """
def __init__(self, rule, root=False): def __init__(self, rule, root=False):
super(Match, self).__init__(rule, root) super(Match, self).__init__(rule=rule, root=root)
@property @property
def name(self): def name(self):
...@@ -495,8 +495,8 @@ class RegExMatch(Match): ...@@ -495,8 +495,8 @@ class RegExMatch(Match):
Default is None to support propagation from global parser setting. Default is None to support propagation from global parser setting.
''' '''
def __init__(self, to_match, rule=None, ignore_case=None): def __init__(self, to_match, rule=None, root=False, ignore_case=None):
super(RegExMatch, self).__init__(rule) super(RegExMatch, self).__init__(rule, root)
self.to_match = to_match self.to_match = to_match
self.ignore_case = ignore_case self.ignore_case = ignore_case
......
...@@ -42,6 +42,6 @@ def test_memoization_nomatch(capsys): ...@@ -42,6 +42,6 @@ def test_memoization_nomatch(capsys):
parser = ParserPython(grammar, debug=True) parser = ParserPython(grammar, debug=True)
parse_tree = parser.parse("c") parse_tree = parser.parse("c")
assert "Cache hit for [rule1(Sequence), 0] = 'Expected 'grammar' at position (1, 1)" in capsys.readouterr()[0] assert "Cache hit for [rule1=Sequence, 0] = 'Expected 'grammar' at position (1, 1)" in capsys.readouterr()[0]
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