class SyntaxTree::YARV::DataFlowGraph::LocalArgument

instructions within a basic block.
This represents an object that goes on the stack that is passed between

def initialize(length)

def initialize(length)
  @length = length
end

def local?

def local?
  true
end

def to_str

def to_str
  length.to_s
end