C type outside of the compiler code and in boxes

Property definitions

nitc :: abstract_compiler $ MType :: ctype_extern
	# C type outside of the compiler code and in boxes
	fun ctype_extern: String do return "val*"
src/compiler/abstract_compiler.nit:2436,2--2437,42

nitc :: abstract_compiler $ MClassType :: ctype_extern
	redef fun ctype_extern: String
	do
		if mclass.kind == extern_kind then
			return "void*"
		else
			return ctype
		end
	end
src/compiler/abstract_compiler.nit:2482,2--2489,4