class TypeProf::Core::ConstReadBox

Attributes

const_read[R]
node[R]
ret[R]

Public Class Methods

new(node, genv, const_read) click to toggle source
Calls superclass method TypeProf::Core::Box::new
# File typeprof-0.30.1/lib/typeprof/core/graph/box.rb, line 60
def initialize(node, genv, const_read)
  super(node)
  @const_read = const_read
  const_read.followers << self
  @ret = Vertex.new(node)
  genv.add_run(self)
end

Public Instance Methods

run0(genv, changes) click to toggle source
# File typeprof-0.30.1/lib/typeprof/core/graph/box.rb, line 70
def run0(genv, changes)
  cdef = @const_read.cdef
  if cdef
    changes.add_depended_value_entity(cdef)
    changes.add_edge(genv, cdef.vtx, @ret)
  end
end