Collect all modules contained in self

Property definitions

nitc :: model_collect $ MPackage :: collect_all_mmodules
	# Collect all modules contained in `self`
	fun collect_all_mmodules(filter: nullable ModelFilter): HashSet[MModule] do
		var res = new HashSet[MModule]
		for mgroup in collect_all_mgroups(filter) do
			res.add_all mgroup.collect_mmodules(filter)
		end
		return res
	end
src/model/model_collect.nit:310,2--317,4