Commit 715b0886 authored by Igor Dejanovic's avatar Igor Dejanovic

Attribute name change from "type" to "rule".

parent 1162701b
...@@ -555,21 +555,21 @@ class ParseTreeNode(object): ...@@ -555,21 +555,21 @@ class ParseTreeNode(object):
The node can be terminal(the leaf of the parse tree) or non-terminal. The node can be terminal(the leaf of the parse tree) or non-terminal.
Attributes: Attributes:
type (str): The name of the rule that created this node or empty rule (str): The name of the rule that created this node or empty
string in case this node is created by a non-root pexpression. string in case this node is created by a non-root pexpression.
position (int): A position in the input stream where the match occurred. position (int): A position in the input stream where the match occurred.
error (bool): Is this a false parse tree node created during error recovery. error (bool): Is this a false parse tree node created during error recovery.
comments : A parse tree of comment(s) attached to this node. comments : A parse tree of comment(s) attached to this node.
""" """
def __init__(self, type, position, error): def __init__(self, rule, position, error):
self.type = type self.rule = rule
self.position = position self.position = position
self.error = error self.error = error
self.comments = None self.comments = None
@property @property
def name(self): def name(self):
return "%s [%s]" % (self.type, self.position) return "%s [%s]" % (self.rule, self.position)
class Terminal(ParseTreeNode): class Terminal(ParseTreeNode):
...@@ -577,21 +577,21 @@ class Terminal(ParseTreeNode): ...@@ -577,21 +577,21 @@ class Terminal(ParseTreeNode):
Leaf node of the Parse Tree. Represents matched string. Leaf node of the Parse Tree. Represents matched string.
Attributes: Attributes:
type (str): The name of the rule that created this terminal. rule (str): The name of the rule that created this terminal.
position (int): A position in the input stream where match occurred. position (int): A position in the input stream where match occurred.
value (str): Matched string at the given position or missing token value (str): Matched string at the given position or missing token
name in the case of an error node. name in the case of an error node.
""" """
def __init__(self, type, position, value, error=False): def __init__(self, rule, position, value, error=False):
super(Terminal, self).__init__(type, position, error) super(Terminal, self).__init__(rule, position, error)
self.value = value self.value = value
@property @property
def desc(self): def desc(self):
if self.value: if self.value:
return "%s '%s' [%s]" % (self.type, self.value, self.position) return "%s '%s' [%s]" % (self.rule, self.value, self.position)
else: else:
return "%s [%s]" % (self.type, self.position) return "%s [%s]" % (self.rule, self.position)
def __str__(self): def __str__(self):
return self.value return self.value
...@@ -611,8 +611,8 @@ class NonTerminal(ParseTreeNode, list): ...@@ -611,8 +611,8 @@ class NonTerminal(ParseTreeNode, list):
nodes (list of ParseTreeNode): Children parse tree nodes. nodes (list of ParseTreeNode): Children parse tree nodes.
""" """
def __init__(self, type, position, nodes, error=False): def __init__(self, rule, position, nodes, error=False):
super(NonTerminal, self).__init__(type, position, error) super(NonTerminal, self).__init__(rule, position, error)
self.extend(flatten([nodes])) self.extend(flatten([nodes]))
# Child nodes cache. Used for lookup by rule name. # Child nodes cache. Used for lookup by rule name.
...@@ -645,7 +645,7 @@ class NonTerminal(ParseTreeNode, list): ...@@ -645,7 +645,7 @@ class NonTerminal(ParseTreeNode, list):
# If not found in the cache find it and store it in the # If not found in the cache find it and store it in the
# cache for later. # cache for later.
for n in self: for n in self:
if n.type == item: if n.rule == item:
self._child_cache[item] = n self._child_cache[item] = n
return n return n
...@@ -746,13 +746,13 @@ class Parser(object): ...@@ -746,13 +746,13 @@ class Parser(object):
for n in node: for n in node:
nodes.append(tree_walk(n)) nodes.append(tree_walk(n))
if node.type in sem_actions: if node.rule in sem_actions:
retval = sem_actions[node.type].first_pass(self, node, nodes) retval = sem_actions[node.rule].first_pass(self, node, nodes)
if hasattr(sem_actions[node.type], "second_pass"): if hasattr(sem_actions[node.rule], "second_pass"):
for_second_pass.append((node.type, retval)) for_second_pass.append((node.rule, retval))
else: else:
if isinstance(node, NonTerminal): if isinstance(node, NonTerminal):
retval = NonTerminal(node.type, node.position, nodes) retval = NonTerminal(node.rule, node.position, nodes)
else: else:
retval = node retval = node
......
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