class Recursivar

Constants

VERSION

Public Class Methods

new(stack, opt) click to toggle source
# File lib/recursivar.rb, line 15
def initialize(stack, opt)
  heap = Heap.new(stack)
  @graph = Graph.new(heap)

  obj = stack.first.send(:binding_self)
  @out = TmpFile.new(obj)
end

Public Instance Methods

print() click to toggle source