Is the associated C type a primitive one?

ENSURE result == (ctype != "val*")

Property definitions

nitc :: abstract_compiler $ MType :: is_c_primitive
	# Is the associated C type a primitive one?
	#
	# ENSURE `result == (ctype != "val*")`
	fun is_c_primitive: Bool do return false
src/compiler/abstract_compiler.nit:2442,2--2445,41

nitc :: abstract_compiler $ MClassType :: is_c_primitive
	redef var is_c_primitive is lazy do return ctype != "val*"
src/compiler/abstract_compiler.nit:2480,2--59