Collect mproperties introduced and redefined in 'self' with visibility >= min_visibility.

Property definitions

nitc :: mclassdef_collect $ MClassDef :: collect_local_mproperties
	# Collect mproperties introduced and redefined in 'self' with `visibility >= min_visibility`.
	fun collect_local_mproperties(filter: ModelFilter): Set[MProperty] do
		var set = new HashSet[MProperty]
		set.add_all collect_intro_mproperties(filter)
		set.add_all collect_redef_mproperties(filter)
		return set
	end
src/metrics/mclassdef_collect.nit:95,2--101,4