Commit b97c5be5 authored by Stefan Behnel's avatar Stefan Behnel

renamed node

parent 6633bf5a
...@@ -343,7 +343,7 @@ class FlattenInListTransform(Visitor.VisitorTransform, SkipDeclarations): ...@@ -343,7 +343,7 @@ class FlattenInListTransform(Visitor.VisitorTransform, SkipDeclarations):
operand2 = right) operand2 = right)
condition = reduce(concat, conds) condition = reduce(concat, conds)
return UtilNodes.TempBlockExprNode(lhs, condition) return UtilNodes.EvalWithTempExprNode(lhs, condition)
def visit_Node(self, node): def visit_Node(self, node):
self.visitchildren(node) self.visitchildren(node)
......
...@@ -141,7 +141,7 @@ class ResultRefNode(AtomicExprNode): ...@@ -141,7 +141,7 @@ class ResultRefNode(AtomicExprNode):
pass pass
class TempBlockExprNode(ExprNodes.NewTempExprNode): class EvalWithTempExprNode(ExprNodes.NewTempExprNode):
# A wrapper around a subexpression that moves an expression into a # A wrapper around a subexpression that moves an expression into a
# temp variable and provides it to the subexpression. # temp variable and provides it to the subexpression.
......
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