class SyntaxTree::YARV::DataFlowGraph::DataFlow
This object represents the flow of data between instructions.
Attributes
in[R]
out[R]
Public Class Methods
new()
click to toggle source
# File lib/syntax_tree/yarv/data_flow_graph.rb, line 24 def initialize @in = [] @out = [] end