Does the current module has a given class mclass?

Return true if the mmodule introduces, refines or imports a class. Visibility is not considered.

Property definitions

nitc :: model $ MModule :: has_mclass
	# Does the current module has a given class `mclass`?
	# Return true if the mmodule introduces, refines or imports a class.
	# Visibility is not considered.
	fun has_mclass(mclass: MClass): Bool
	do
		return self.in_importation <= mclass.intro_mmodule
	end
src/model/model.nit:186,2--192,4