Property definitions

nitc $ FullNameLengthComparator :: defaultinit
# Compare two matches by their full name length
class FullNameLengthComparator
	super ScoreComparator

	redef fun compare(o1, o2) do return o1.mentity.full_name.length <=> o2.mentity.full_name.length
end
src/model/model_index.nit:631,1--636,3