class TypeProf::AttrMethodDef
Attributes
ivar[R]
kind[R]
Public Class Methods
new(ivar, kind, pub_meth)
click to toggle source
# File typeprof-0.21.11/lib/typeprof/method.rb, line 192 def initialize(ivar, kind, pub_meth) @ivar = ivar @kind = kind # :reader | :writer @pub_meth = pub_meth end
Public Instance Methods
do_send(recv, mid, aargs, caller_ep, caller_env, scratch, &ctn)
click to toggle source
# File typeprof-0.21.11/lib/typeprof/method.rb, line 200 def do_send(recv, mid, aargs, caller_ep, caller_env, scratch, &ctn) case @kind when :reader if aargs.lead_tys.size == 0 scratch.add_ivar_read!(recv, @ivar, caller_ep) do |ty, _ep| ctn[ty, caller_ep, caller_env] end else ctn[Type.any, caller_ep, caller_env] end when :writer if aargs.lead_tys.size == 1 ty = aargs.lead_tys[0] scratch.set_instance_variable(recv, @ivar, ty, caller_ep, caller_env) ctn[ty, caller_ep, caller_env] else ctn[Type.any, caller_ep, caller_env] end end end