# File lib/puppet/simple_graph.rb, line 68
68:         def other_vertex(direction, edge)
69:             case direction
70:             when :in; edge.source
71:             else
72:                 edge.target
73:             end
74:         end