The current receiver type to compile : signature_to_c and body_to_c.

See msignature method for more information.

Property definitions

nitc $ AbstractRuntimeFunction :: recv_mtype
	# The current receiver type to compile : `signature_to_c` and `body_to_c`.
	# See `msignature` method for more information.
	protected fun recv_mtype: MType
	do
		return mmethoddef.mclassdef.bound_mtype
	end
src/compiler/abstract_compiler.nit:2124,2--2129,4

nitc $ SeparateRuntimeFunction :: recv_mtype
	redef fun recv_mtype
	do
		return called_recv
	end
src/compiler/separate_compiler.nit:2483,2--2486,4

nitc $ CustomizedRuntimeFunction :: recv_mtype
        redef fun recv_mtype
        do
                return recv
        end
src/compiler/global_compiler.nit:1058,9--1061,11