Anchor a type to the main module and the current receiver

Property definitions

nitc $ AbstractCompilerVisitor :: anchor
	# Anchor a type to the main module and the current receiver
	fun anchor(mtype: MType): MType
	do
		if not mtype.need_anchor then return mtype
		return mtype.anchor_to(self.compiler.mainmodule, self.frame.receiver)
	end
src/compiler/abstract_compiler.nit:1436,2--1441,4