class SyntaxTree::YARV::DataFlowGraph::LocalArgument

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

Attributes

length[R]
name[R]

Public Class Methods

new(length) click to toggle source
# File lib/syntax_tree/yarv/data_flow_graph.rb, line 53
def initialize(length)
  @length = length
end

Public Instance Methods

local?() click to toggle source
# File lib/syntax_tree/yarv/data_flow_graph.rb, line 57
def local?
  true
end
to_str() click to toggle source
# File lib/syntax_tree/yarv/data_flow_graph.rb, line 61
def to_str
  length.to_s
end