class SyntaxTree::YARV::DataFlowGraph::BlockArgument

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

Attributes

name[R]

Public Class Methods

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

Public Instance Methods

local?() click to toggle source
# File lib/syntax_tree/yarv/data_flow_graph.rb, line 39
def local?
  false
end
to_str() click to toggle source
# File lib/syntax_tree/yarv/data_flow_graph.rb, line 43
def to_str
  name.to_s
end