class Prism::DotVisitor

def visit_local_variable_target_node(node)

Visit a LocalVariableTargetNode node.
def visit_local_variable_target_node(node)
  table = Table.new("LocalVariableTargetNode")
  id = node_id(node)
  # name
  table.field("name", node.name.inspect)
  # depth
  table.field("depth", node.depth.inspect)
  digraph.nodes << <<~DOT
    #{id} [
      label=<#{table.to_dot.gsub(/\n/, "\n  ")}>
    ];
  DOT
  super
end