Add an edge to the graph

Property definitions

dot $ DotGraph :: add_edge
	# Add an edge to the graph
	fun add_edge(from, to: DotElement): DotEdge do
		var edge = new DotEdge(from, to)
		add edge
		return edge
	end
lib/dot/dot.nit:132,2--137,4