class SyntaxTree::YARV::SeaOfNodes::SubGraph

A subgraph represents the local data and control flow of a single basic block.

Attributes

first_fixed[R]
inputs[R]
last_fixed[R]
outputs[R]

Public Class Methods

new(first_fixed, last_fixed, inputs, outputs) click to toggle source
# File lib/syntax_tree/yarv/sea_of_nodes.rb, line 90
def initialize(first_fixed, last_fixed, inputs, outputs)
  @first_fixed = first_fixed
  @last_fixed = last_fixed
  @inputs = inputs
  @outputs = outputs
end