Returns true if the associated mmethoddef's return type isn't null,

otherwise false.

Property definitions

nitc $ AbstractRuntimeFunction :: has_return
	# Returns `true` if the associated `mmethoddef`'s return type isn't null,
	# otherwise `false`.
	fun has_return: Bool
	do
		return mmethoddef.msignature.return_mtype != null
	end
src/compiler/abstract_compiler.nit:2109,2--2114,4