# Compare two matches by their MEntity visibility
#
# We reverse the original order so private is at the end of the list.
class VisibilityComparator
super ScoreComparator
redef fun compare(o1, o2) do return o2.mentity.visibility <=> o1.mentity.visibility
end
src/model/model_index.nit:597,1--604,3