Return the class self in the class hierarchy of the module mmodule.

SEE: MModule::flatten_mclass_hierarchy

REQUIRE: mmodule.has_mclass(self)

Property definitions

nitc $ MClass :: in_hierarchy
	# Return the class `self` in the class hierarchy of the module `mmodule`.
	#
	# SEE: `MModule::flatten_mclass_hierarchy`
	# REQUIRE: `mmodule.has_mclass(self)`
	fun in_hierarchy(mmodule: MModule): POSetElement[MClass]
	do
		return mmodule.flatten_mclass_hierarchy[self]
	end
src/model/model.nit:559,2--566,4