class SyntaxTree::YARV::DataFlowGraph::BlockArgument

basic blocks.
This represents an object that goes on the stack that is passed between

def initialize(name)

def initialize(name)
  @name = name
end

def local?

def local?
  false
end

def to_str

def to_str
  name.to_s
end