This class represents a method and is essentially same as block type except the method name.
This accessor sets/gets the method name for this method type.
# File lib/rubybreaker/type/type.rb, line 180 def initialize(meth_name,arg_types=[],blk_type=nil,ret_type=nil,*args) super(arg_types,blk_type,ret_type,*args) @meth_name = meth_name.to_sym end