class SyntaxTree::YARV::SeaOfNodes::PhiNode

incoming blocks.
Phi nodes are used to represent the merging of data flow from multiple

def initialize(id)

def initialize(id)
  @inputs = []
  @outputs = []
  @id = id
end

def label

def label
  "#{id} φ"
end