Sort modules and groups with a loosely adaptation of the linearization of modules

Property definitions

nitc $ MPackageTree :: sort_with_linex
	# Sort modules and groups with a loosely adaptation of the linearization of modules
	fun sort_with_linex
	do
		var c = linex_comparator
		if c == null then
			c = new LinexComparator(self)
			linex_comparator = c
		end
		sort_with(c)
	end
src/model/model_viz.nit:47,2--56,4