Collect all init methods inherited by self

Property definitions

nitc :: model_collect $ MClass :: collect_inherited_inits
	# Collect all init methods inherited by `self`
	fun collect_inherited_inits(mainmodule: MModule, filter: nullable ModelFilter): Set[MMethod] do
		var res = new HashSet[MMethod]
		for mproperty in collect_inherited_mmethods(mainmodule, filter) do
			if mproperty.is_init then res.add(mproperty)
		end
		return res
	end
src/model/model_collect.nit:901,2--908,4