Collect all methods introduced and redefined in self

Property definitions

nitc :: model_collect $ MClass :: collect_local_mmethods
	# Collect all methods introduced and redefined in `self`
	fun collect_local_mmethods(filter: nullable ModelFilter): Set[MMethod] do
		var set = new HashSet[MMethod]
		set.add_all collect_intro_mmethods(filter)
		set.add_all collect_redef_mmethods(filter)
		return set
	end
src/model/model_collect.nit:801,2--807,4