class SyntaxTree::YARV::SeaOfNodes::Edge

The edge of a graph represents either control flow or data flow.

def initialize(from, to, type, label)

def initialize(from, to, type, label)
  raise unless TYPES.include?(type)
  @from = from
  @to = to
  @type = type
  @label = label
end