Property definitions

nitc $ FullNameComparator :: defaultinit
# Compare two matches by their full_name in lexicographic order
#
# Generally, for a same score, we want to put A before Z.
class FullNameComparator
	super ScoreComparator

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