Commit 07519b00 authored by Igor Dejanovic's avatar Igor Dejanovic

Special handling for EOF and some improvement in debuging logging.

parent 25a090d9
...@@ -485,6 +485,9 @@ class RegExMatch(Match): ...@@ -485,6 +485,9 @@ class RegExMatch(Match):
else: else:
self.regex = re.compile(to_match) self.regex = re.compile(to_match)
def __str__(self):
return self.to_match
def _parse(self, parser): def _parse(self, parser):
c_pos = parser.position c_pos = parser.position
m = self.regex.match(parser.input[c_pos:]) m = self.regex.match(parser.input[c_pos:])
...@@ -706,8 +709,11 @@ class SemanticAction(object): ...@@ -706,8 +709,11 @@ class SemanticAction(object):
This is the default implementation used if no semantic action is This is the default implementation used if no semantic action is
defined. defined.
""" """
retval = None
if isinstance(node, Terminal): if isinstance(node, Terminal):
# Default for Terminal is to convert to string. # Default for Terminal is to convert to string.
# EOF will return None
if not node.rule == '** EOF':
retval = str(node) retval = str(node)
else: else:
retval = node retval = node
...@@ -802,13 +808,18 @@ class Parser(object): ...@@ -802,13 +808,18 @@ class Parser(object):
semantic actions and creating list of object that needs to be semantic actions and creating list of object that needs to be
called in the second pass. called in the second pass.
""" """
retval = None
if self.debug: if self.debug:
print("Walking down ", node.name, " type:", print("Walking down ", node.name, " type:",
type(node), "str:", str(node)) type(node), "str:", str(node))
children = [] children = []
if isinstance(node, NonTerminal): if isinstance(node, NonTerminal):
for n in node: for n in node:
children.append(tree_walk(n)) child = tree_walk(n)
if child is not None:
children.append(child)
if self.debug: if self.debug:
print("Visiting ", node.name, "= '", str(node), print("Visiting ", node.name, "= '", str(node),
...@@ -818,14 +829,23 @@ class Parser(object): ...@@ -818,14 +829,23 @@ class Parser(object):
print ("\t%d:" % (i + 1), str(a), "type:", type(a)) print ("\t%d:" % (i + 1), str(a), "type:", type(a))
if node.rule in sem_actions: if node.rule in sem_actions:
retval = sem_actions[node.rule].first_pass(self, sem_action = sem_actions[node.rule]
node, children) retval = sem_action.first_pass(self, node, children)
if hasattr(sem_actions[node.rule], "second_pass"):
if hasattr(sem_action, "second_pass"):
for_second_pass.append((node.rule, retval)) for_second_pass.append((node.rule, retval))
if self.debug:
print("\tApplying semantic action ", type(sem_action))
else: else:
# If no rule is present use some sane defaults # If no rule is present use some sane defaults
if self.debug:
print("\tApplying default semantic action.")
if isinstance(node, Terminal): if isinstance(node, Terminal):
# Convert Terminal node to str # Convert Terminal node to str
if not node.rule == '** EOF':
retval = str(node) retval = str(node)
elif isinstance(node, NonTerminal): elif isinstance(node, NonTerminal):
retval = SemanticAction().first_pass(self, node, children) retval = SemanticAction().first_pass(self, node, children)
......
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