specializers have more redefinitions that call super than not calling it

Property definitions

nitc :: mendel_metrics $ MClass :: is_specializer
	# specializers have more redefinitions that call super than not calling it
	private fun is_specializer(filter: ModelFilter): Bool do
		var spcs = extended_mproperties(filter).length
		var ovrs = overriden_mproperties(filter).length
		var rdfs = collect_redef_mproperties(filter).length
		if spcs > ovrs and rdfs > 0 then return true
		return false
	end
src/metrics/mendel_metrics.nit:326,2--333,4