The list of registered phases in the application order.

Property definitions

nitc :: phase $ ToolContext :: phases_list
	# The list of registered phases in the application order.
	var phases_list: Sequence[Phase] is lazy do
		var phases = self.phases.to_a
		self.phases.sort(phases)
		return phases
	end
src/phase.nit:72,2--77,4