# File lib/ruote/tree_dot.rb, line 41
  def self.branch_to_dot(expid, exp)

    [
      "  \"#{expid}\" "+
      "[ label = \"#{exp[0]} #{exp[1].inspect.gsub("\"", "'")}\" ];"
    ] +
    children_to_dot(expid, exp)
  end