# File lib/support.rb, line 114
  def initialize(receiver_type, formal_types, return_type)
    raise "nil not allowed" if formal_types.nil? or return_type.nil?
    @receiver_type = receiver_type
    @formal_types = formal_types
    @return_type = return_type
  end