Generate a monomorphic send for the method m, the type t and the arguments args

Property definitions

nitc $ AbstractCompilerVisitor :: monomorphic_send
	# Generate a monomorphic send for the method `m`, the type `t` and the arguments `args`
	fun monomorphic_send(m: MMethod, t: MType, args: Array[RuntimeVariable]): nullable RuntimeVariable
	do
		assert t isa MClassType
		var propdef = m.lookup_first_definition(self.compiler.mainmodule, t)
		return self.call(propdef, t, args)
	end
src/compiler/abstract_compiler.nit:1515,2--1521,4