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

Property definitions

nitc $ AbstractCompilerVisitor :: monomorphic_super_send
	# Generate a monomorphic super send from the method `m`, the type `t` and the arguments `args`
	fun monomorphic_super_send(m: MMethodDef, t: MType, args: Array[RuntimeVariable]): nullable RuntimeVariable
	do
		assert t isa MClassType
		m = m.lookup_next_definition(self.compiler.mainmodule, t)
		return self.call(m, t, args)
	end
src/compiler/abstract_compiler.nit:1523,2--1529,4