Collect all virtual types introduced or redefined in self

Property definitions

nitc :: model_collect $ MClass :: collect_local_vts
	# Collect all virtual types introduced or redefined in `self`
	fun collect_local_vts(filter: nullable ModelFilter): Set[MVirtualTypeProp] do
		var set = new HashSet[MVirtualTypeProp]
		set.add_all collect_intro_vts(filter)
		set.add_all collect_redef_vts(filter)
		return set
	end
src/model/model_collect.nit:939,2--945,4