Lines Matching refs:visit
398 which is forwarded by the `visit` method.
404 class name of the node. So a `TryFinally` node visit function would
406 the `visit` method. If no visitor function exists for a node
414 def visit(self, node):
426 self.visit(item)
428 self.visit(value)
485 node = YourTransformer().visit(node)
494 value = self.visit(value)
503 new_node = self.visit(old_value)
809 super().visit(node)
811 # Note: as visit() resets the output text, do NOT rely on
813 # the subclass visit() method, which resets self._source to an empty list)
814 def visit(self, node):
1207 return unparser.visit(inner)
1708 return unparser.visit(ast_obj)